Skip to content

Commit

Permalink
increase wait seconds to 60
Browse files Browse the repository at this point in the history
  • Loading branch information
strongduanmu committed Nov 27, 2024
1 parent a7fc03d commit 0e81c80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected void addMigrationTargetResource(final PipelineContainerComposer contai
.replace("${ds3}", containerComposer.getActualJdbcUrlTemplate(PipelineContainerComposer.DS_3, true))
.replace("${ds4}", containerComposer.getActualJdbcUrlTemplate(PipelineContainerComposer.DS_4, true));
containerComposer.proxyExecuteWithLog(addTargetResource, 0);
Awaitility.await().ignoreExceptions().atMost(15L, TimeUnit.SECONDS).pollInterval(3L, TimeUnit.SECONDS).until(() -> 3 == containerComposer.showStorageUnitsName().size());
Awaitility.await().ignoreExceptions().atMost(60L, TimeUnit.SECONDS).pollInterval(3L, TimeUnit.SECONDS).until(() -> 3 == containerComposer.showStorageUnitsName().size());
}

protected void createSourceSchema(final PipelineContainerComposer containerComposer, final String schemaName) throws SQLException {
Expand Down

0 comments on commit 0e81c80

Please sign in to comment.