Skip to content

Commit

Permalink
chore: Increasing timeout createdataset (#337)
Browse files Browse the repository at this point in the history
Fixes #252 ☕️
  • Loading branch information
munkhuushmgl authored Apr 27, 2021
1 parent 128c8aa commit 2c3c2e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static void createDatasetTextSample(String project, String datasetDisplayName)
System.out.format("Operation name: %s\n", datasetFuture.getInitialFuture().get().getName());

System.out.println("Waiting for operation to finish...");
Dataset datasetResponse = datasetFuture.get(120, TimeUnit.SECONDS);
Dataset datasetResponse = datasetFuture.get(180, TimeUnit.SECONDS);

System.out.println("Create Text Dataset Response");
System.out.format("\tName: %s\n", datasetResponse.getName());
Expand Down

0 comments on commit 2c3c2e7

Please sign in to comment.