Skip to content

Commit

Permalink
test: increase time out for migrations test (#7784)
Browse files Browse the repository at this point in the history
  • Loading branch information
agavra authored Jul 13, 2021
1 parent 3c78e41 commit 1fd2ff1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,7 @@ private static void waitForMetadataTableReady() {

private static List<StreamedRow> waitForNumRows(final String pullQuery, final int numRows) {
return assertThatEventually(
"Query '" + pullQuery + "' never got " + numRows + " rows",
() -> {
try {
return makeKsqlQuery(pullQuery);
Expand All @@ -644,7 +645,9 @@ private static List<StreamedRow> waitForNumRows(final String pullQuery, final in
}
}
},
hasSize(numRows)
hasSize(numRows),
1,
TimeUnit.MINUTES
);
}
}

0 comments on commit 1fd2ff1

Please sign in to comment.