ing-bank / scruid

Scala + Druid: Scruid. A library that allows you to compose queries in Scala, and parse the result back into typesafe classes.
Apache License 2.0
115 stars 29 forks source link

akka configuration support #34

Closed michalmisiewicz closed 5 years ago

michalmisiewicz commented 5 years ago

33

Fokko commented 5 years ago

The CI failed for an unrelated issue, let me check.

bjgbeelen commented 5 years ago

Hi @michalmisiewicz ,

Your request feels very specific to your use case and I'm not yet convinced your change belongs to this library. Can you elaborate a bit more about what you want to achieve?. As far as I recall when calling ActorSystem("name"), it will load the configuration as specified in the application.conf. So I think that if you would change your application.conf settings in your own project to include akka.daemonic=on it would pick this up. I haven't tested this, so please confirm this.

Cheers, Bas

michalmisiewicz commented 5 years ago

Hi @bjgbeelen,

You're correct. Specifying akka.daemonic=on in application.conf solved issue. Thanks for help.