Andrei K

Results 4 comments of Andrei K

I've been using Filters so rate-limiting and auth can be done before body parsing. The deferred body parsing is a great idea, thank you for working on it. I do...

Hi all, I am trying to take advantage of graceful shutdown using the code from the docs https://doc.akka.io/docs/akka-http/current/server-side/graceful-termination.html ```scala val bindingFuture = Http().newServerAt("localhost", 8080).bind(routes) .map(_.addToCoordinatedShutdown(hardTerminationDeadline = 10.seconds)) ``` I can't...

It turned out that `Scope.close()` was missing in one code block when we did `.activate` a span. This actually also cause a memory leakage. After `Scope.close()` was put, the issue...