Re: [akka-user][deprecated] How to generate the javadoc for offline use?

2018-05-16 Thread Konrad “ktoso” Malawski
Hi there, It’s `sbt Dakka.genjavadoc.enabled=true doc` if I remember correctly. I suggest you ask questions on the https://discuss.akka.io forum as that one we monitor more actively nowadays (as mentioned in the footer and header of the mailing list) -- Cheers, Konrad 'ktoso ' Ma

[akka-user][deprecated] Akka Streams Resuming Materializer does not log exceptions

2018-05-16 Thread dollyg
Hello all, When I provide a resuming materializer to the stream, the exceptions that occurred in the stream do not get logged. Is there any way to log these exceptions ? import akka.actor.ActorSystem import akka.stream.scaladsl.Source import akka.stream.{ActorMaterializer, ActorMaterializerSett

Re: [akka-user][deprecated] Akka Streams Resuming Materializer does not log exceptions

2018-05-16 Thread Konrad “ktoso” Malawski
Use the .log() operator. Same as exceptions thrown in a Future do not automatically get logged. There has been discussion about enabling this always, however you’d then be swamped with errors which are recovered and actually “fine and nothing to worry about”. If you want logging, put a log() the

[akka-user][deprecated] Caused by: com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'enabled'

2018-05-16 Thread Saggie
I am trying get my cluster up and running on my localhost with below configuration (application.conf). But I am getting follwing error. Caused by: com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'enabled' I am pretty sure it finds the application.conffile as

Re: [akka-user][deprecated] Caused by: com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'enabled'

2018-05-16 Thread Konrad “ktoso” Malawski
It is likely related to your build or code, please share that. Can we continue this on discuss.akka.io please though? You have a better chance to get answers quickly there. As noted in the header of this mailing list: We announced

Re: [akka-user][deprecated] Caused by: com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'enabled'

2018-05-16 Thread Saggie
I posted it there already .. https://discuss.lightbend.com/t/akka-com-typesafe-config-configexception-missing-no-configuration-setting-found-for-key-enabled/1056 On Wednesday, May 16, 2018 at 11:06:33 PM UTC-4, Konrad Malawski wrote: > > It is likely related to your build or code, please share tha