Skip to content

Commit

Permalink
ODP-1829: Increased wait time so that tests would not fail
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreySmith committed Jul 22, 2024
1 parent 959c656 commit f7cdc6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ void testRecovery_Running_Paragraph_sh() throws Exception {
// shutdown zeppelin and restart it
zepServer.shutDown();
zepServer.start();

Thread.Sleep(5000);
// wait until paragraph is finished
await().until(isParagraphTerminated(p1));
// Wait because paragraph is re submited
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ void indexNoteNameUpdatedOnNoteSave() throws IOException, InterruptedException {
return null;
});
drainSearchEvents();
Thread.sleep(1000);
Thread.sleep(3000);
// then
assertTrue(resultForQuery("Notebook1").isEmpty());
assertFalse(resultForQuery("NotebookN").isEmpty());
Expand Down

0 comments on commit f7cdc6e

Please sign in to comment.