Skip to content

Commit

Permalink
Increase timeout for DataTypesIT#allTypesTest (#1930)
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Kinard <[email protected]>
  • Loading branch information
Polber authored Oct 11, 2024
1 parent 9d95494 commit 36961b4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import com.google.cloud.teleport.metadata.TemplateIntegrationTest;
import com.google.cloud.teleport.v2.templates.SourceDbToSpanner;
import com.google.cloud.teleport.v2.templates.SourceDbToSpannerITBase;
import java.time.Duration;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
Expand Down Expand Up @@ -87,7 +88,8 @@ public void allTypesTest() throws Exception {
spannerResourceManager,
jobParameters,
null);
PipelineOperator.Result result = pipelineOperator().waitUntilDone(createConfig(jobInfo));
PipelineOperator.Result result =
pipelineOperator().waitUntilDone(createConfig(jobInfo, Duration.ofMinutes(30L)));
assertThatResult(result).isLaunchFinished();

Map<String, List<Map<String, Object>>> expectedData = getExpectedData();
Expand Down

0 comments on commit 36961b4

Please sign in to comment.