Skip to content

Commit 8153112

Browse files
authored
Reduce wait on CommuteSearchSample to 1 second from 5. (GoogleCloudPlatform#2737)
1 parent 59a47db commit 8153112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobs/v3/src/main/java/com/google/samples/CommuteSearchSample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static void commuteSearch(String companyName) throws IOException, Interru
7777
SearchJobsResponse response =
7878
talentSolutionClient.projects().jobs().search(DEFAULT_PROJECT_ID, searchJobsRequest)
7979
.execute();
80-
Thread.sleep(5000);
80+
Thread.sleep(1000);
8181
System.out.println(response);
8282
}
8383
// [END commute_search]

0 commit comments

Comments
 (0)