Re: [akka-user] akka-http-experimental 1.0-M2 on java8: tests pass, but internal akka error messages logged

2015-01-16 Thread Akka Team
That's something we'll have to take care of in the internals. We have a ticket for this https://github.com/akka/akka/issues/15349 as well as using the new dead-letter suppresion mech

Re: [akka-user] akka-http-experimental 1.0-M2 on java8: tests pass, but internal akka error messages logged

2015-01-12 Thread Allan Brighton
Is there some way to avoid getting these error messages in the log, or is that something that will be fixed in the next release? Is there any way that I can properly terminate the connection? It seems like all this is internal to akka-http. -- Allan On Thursday, January 1, 2015 at 10:53:59 AM U

Re: [akka-user] akka-http-experimental 1.0-M2 on java8: tests pass, but internal akka error messages logged

2015-01-02 Thread Allan Brighton
The problem turned out to be the client closing the connection too soon, before the streaming was completed. Thanks for the tip, Allan On Thursday, January 1, 2015 10:53:59 AM UTC+1, Akka Team wrote: > > Hi, > > The ERROR logs are there because the Tcp connection was not terminated > properly w

Re: [akka-user] akka-http-experimental 1.0-M2 on java8: tests pass, but internal akka error messages logged

2015-01-01 Thread Akka Team
Hi, The ERROR logs are there because the Tcp connection was not terminated properly with a clean shutdown (FIN) but a connection reset (RST), which causes an error event in the stream. (The logging is a bit verbose here see https://github.com/akka/akka/issues/15349) In your test case this is not a