Skip to content

Commit

Permalink
BUG 35198313 - [build] FirewallTests.testFirewallUseCase:79 » Runtime…
Browse files Browse the repository at this point in the history
… Coherence did not start up within 5s

[git-p4: depot-paths = "//dev/coherence-ce/main/": change = 99361]
  • Loading branch information
rlubke committed Mar 20, 2023
1 parent 82ae337 commit bf18617
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2022 Oracle and/or its affiliates.
* Copyright (c) 2022, 2023, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
Expand Down Expand Up @@ -48,9 +48,9 @@ public static void startCoherenceClient(String instanceName, String cacheConfig)

// Start Coherence
try {
coherence.start().get(5000, TimeUnit.MILLISECONDS);
coherence.start().get(60, TimeUnit.SECONDS);
} catch (TimeoutException | InterruptedException | ExecutionException e) {
throw new RuntimeException("Coherence did not start up within 5s.", e);
throw new RuntimeException("Coherence did not start up within 60s.", e);
}
}
// # end::bootstrap[]
Expand Down

0 comments on commit bf18617

Please sign in to comment.