Skip to content

Commit

Permalink
improved app
Browse files Browse the repository at this point in the history
  • Loading branch information
franvila committed Nov 9, 2023
1 parent 6f7a50c commit edd5979
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public String getBootstrap() {
*/
public boolean isRunning() {
if (thread.isAlive()) {
await().atMost(3, TimeUnit.SECONDS).until(() -> ProcessHandle.of(pid).isPresent());
await().atMost(5, TimeUnit.SECONDS).until(() -> ProcessHandle.of(pid).isPresent());
}
return thread.isAlive() && ProcessHandle.of(pid).isPresent();
}
Expand Down

0 comments on commit edd5979

Please sign in to comment.