Disable Lagom circuit breaker

It looks like they fail tests from time to time
This commit is contained in:
Nikolay Martynov 2018-07-30 21:41:10 -04:00
parent 78e6a9c336
commit 2bfb7b93ec
2 changed files with 7 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class LagomTest extends AgentTestRunner {
.withPersistence(false)
.withCassandra(false)
.withJdbc(false)
.withConfigureBuilder(
.configureBuilder(
new Function<GuiceApplicationBuilder, GuiceApplicationBuilder>() {
@Override
GuiceApplicationBuilder apply(GuiceApplicationBuilder builder) {

View File

@ -0,0 +1,6 @@
lagom.circuit-breaker {
// Disable Lagom circuit-breaker
default {
enabled = off
}
}