[akka-user][deprecated] Passing Headers in Akka http route test

2018-03-27 Thread vishal . verma
I am working on the the securing the http routes created with akka-http using the authentication token, which is passed as header and on authenticated the route is rejected or accepted . val routes: Route = corsHandler(route) lazy val route: Route = pathPrefix(HttpConstants.PathPerfix /

Re: [akka-user][deprecated] Re: [akka-user] how to avoid or catch an akka.remote.transport.Transport$InvalidAssociationException

2018-03-27 Thread Patrik Nordwall
It should probably be changed to Warning level. PR fixing this would be welcome. /Patrik tis 27 mars 2018 kl. 16:31 skrev Zachary Marois : > If these are harmless, would ignoring any ERRORs from the > akka.remote.EndpointWriter class be safe? I definitely worry about hiding > real errors, but I a

[akka-user][deprecated] Re: [akka-user] how to avoid or catch an akka.remote.transport.Transport$InvalidAssociationException

2018-03-27 Thread Zachary Marois
If these are harmless, would ignoring any ERRORs from the akka.remote.EndpointWriter class be safe? I definitely worry about hiding real errors, but I also don't know how to deal with all these false-negatives. On Thursday, August 24, 2017 at 7:27:22 AM UTC-4, Jakub Liska wrote: > > Hey, I thin