akka-http
akka-http copied to clipboard
The Streaming-first HTTP server/module of Akka
Hi, I'm running an example of a test for Route Testkit from the official [documentation](https://doc.akka.io/docs/akka-http/current/routing-dsl/testkit.html) with small modification: ```java public class MyAppServiceTest extends JUnitRouteTest { // THIS IS SMALL MODIFICATION...
See https://discuss.lightbend.com/t/handling-upstream-ioexceptions/9285 10.2.x is still compatible with Akka 2.5 which didn't support cancellation cause propagation. Therefore, we cannot report a connection error to a pending response stream on the server....
Detected by running `ClientServerSpec` with http2 enabled in test `"complete a request/response when the request side immediately closes the connection after sending the request"`. Without HTTP/1.1 the connection will timeout...
val fut = Future.successful(List(Dummy(1),Dummy(2))) complete(fut) fails to compile under Scala 3.x - works as expected under 2.13.x [Minimal project to show the issue](https://github.com/csar/akka-http-scala3-problem )
But instead, just close the stream gracefully. See https://github.com/lightbend/akkaserverless-framework/issues/939
Hello everyone, We are experiencing an issue with akka-http 10.1.5 that doesn't terminate the websocket stream when there is a network disconnection. Our server configuration is the following: ``` akka{...
There is a proposal for a new HTTP method called "QUERY", which looks like it should make it into an RFC relatively quickly since it should be rather uncontroversial: https://www.ietf.org/archive/id/draft-ietf-httpbis-safe-method-w-body-02.html...
**Issue by [jrudolph](https://github.com/jrudolph)** _Thursday Aug 20, 2015 at 07:30 GMT_ _Originally opened as https://github.com/akka/akka/issues/18274_ --- See http://stackoverflow.com/questions/32085345/how-to-configure-akka-http-to-return-http-503-in-case-of-request-timeouts Not sure which publisher timed out in that specific case but if we...
We have found that under some circumstances, Akka's Http client is not honoring the positive-ttl expiry value, not picking up new DNS entries. It looks as if under load, and...
Having `nodeSeqMediaTypes` in the trait `ScalaXmlSupport` allows clients to override it if they want to support some more mediaTypes related to xml (for example application/rdf+xml)