All Downloads are FREE. Search and download functionalities are using the official Maven repository.

play.reference-overrides.conf Maven / Gradle / Ivy

The newest version!
# Copyright (C) from 2022 The Play Framework Contributors , 2011-2021 Lightbend Inc. 

# Hack to override some of Akka's defaults in Play

# Play's config file loading logic will load this file with a higher
# priority than reference.conf, but a lower priority than application.conf.
# That allows Play to override Akka's reference.conf (which can't happen
# from in Play's own reference.conf), but still allow users to override
# Play's settings in their application.conf.

akka {
  # Turn off dead letters until Akka HTTP server is stable
  log-dead-letters = off

}

# separate config for dev mode
play.akka.dev-mode {
  akka {
    log-dead-letters = off
    
    # dev-mode's actor system should not use remote
    # if, for some reason, a user adds akka-remote, 
    # it should only be used by the application's actor system, not by the dev-mode one
    actor.provider = local
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy