Disable Lagom circuit breaker
It looks like they fail tests from time to time
This commit is contained in:
parent
78e6a9c336
commit
2bfb7b93ec
|
|
@ -30,7 +30,7 @@ class LagomTest extends AgentTestRunner {
|
||||||
.withPersistence(false)
|
.withPersistence(false)
|
||||||
.withCassandra(false)
|
.withCassandra(false)
|
||||||
.withJdbc(false)
|
.withJdbc(false)
|
||||||
.withConfigureBuilder(
|
.configureBuilder(
|
||||||
new Function<GuiceApplicationBuilder, GuiceApplicationBuilder>() {
|
new Function<GuiceApplicationBuilder, GuiceApplicationBuilder>() {
|
||||||
@Override
|
@Override
|
||||||
GuiceApplicationBuilder apply(GuiceApplicationBuilder builder) {
|
GuiceApplicationBuilder apply(GuiceApplicationBuilder builder) {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
lagom.circuit-breaker {
|
||||||
|
// Disable Lagom circuit-breaker
|
||||||
|
default {
|
||||||
|
enabled = off
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue