Remove reference to test.sh from make-dist.sh
[aquarium] / src / test / resources / akka.conf
1 akka {
2   version = "1.3.1"
3   
4   event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
5   event-handler-level = "WARNING" # Options: ERROR, WARNING, INFO, DEBUG
6
7   actor {
8     # Default throughput for all ExecutorBasedEventDrivenDispatcher, set to 1 for complete fairness
9     throughput = 1
10   }
11
12   # spray-can config
13   spray-can {
14     server {
15       service-actor-id = "spray-root-service"
16       timeout-actor-id = "spray-root-service" # we want to handle timeouts with the same service actor
17       request-timeout = 3000 # require all requests to be completed within 3 seconds
18     }
19 }