Skip to content

Commit

Permalink
Increased latch await timeout to fix start timeout of VncRecordingCon…
Browse files Browse the repository at this point in the history
…tainer (#2063)
  • Loading branch information
Stefan Rempfer committed Apr 9, 2020
1 parent a09f4d5 commit 3480d41
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -84,7 +84,7 @@ public void onNext(Frame frame) {
.withStdErr(true)
.exec(callback)
) {
return latch.await(1, TimeUnit.SECONDS);
return latch.await(5, TimeUnit.SECONDS);
}
});
} catch (TimeoutException e) {
Expand Down

0 comments on commit 3480d41

Please sign in to comment.