Enable fatal errors for docs (#29570)

This commit is contained in:
Arnout Engelen 2020-09-08 15:10:21 +02:00 committed by GitHub
parent e0ceb71ccd
commit ca59d8149c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
55 changed files with 268 additions and 223 deletions

View file

@ -48,8 +48,8 @@ object FactorialBackend {
.withFallback(ConfigFactory.load("factorial"))
val system = ActorSystem("ClusterSystem", config)
system.actorOf(Props[FactorialBackend], name = "factorialBackend")
system.actorOf(Props[FactorialBackend](), name = "factorialBackend")
system.actorOf(Props[MetricsListener], name = "metricsListener")
system.actorOf(Props[MetricsListener](), name = "metricsListener")
}
}