Will Sargent

Results 199 comments of Will Sargent

As the original author, I have a lot to apologize for. It was basically my first try at understanding the JSSE / JCA API and as such, it has all...

A self signed certificate is not the same as accepting any certificate. You should add the cert to the trust store as one of your trust anchors. > and it's...

I'm starting to think that Evolutions isn't all that useful as a general concept, given how tied in it is to application startup. Especially when there's code generation tools involved...

I'm behind on my reading (and a bunch of other stuff) so I will catch up on this, but in the mean time I just remembered CloudFoundry did some work...

Can you see if those results are repeatable with EssentialFilter, rather than Filter? I think the Materializer is at fault here. EDIT: okay, you already did that. Yes, materialization is...

Last time I touched this was pass through materialization https://github.com/akka/akka/issues/22587

Realistically, you'd push something from akka reactive streams via a kafka consumer.

> This always happens at around 16k requests, even at a concurrency of only 2 Please see the performance test framework results at https://playframework.github.io/prune/ -- this is far more likely...

It's so you can add stocks after the flow has started: https://github.com/playframework/play-scala-websocket-example/blob/2.6.x/app/actors/UserActor.scala#L94

I think this is failing because `FakeRequest` will render with HOST set to `localhost` with no port at all if not explicitly defined: ```scala class FakeRequestFactory(requestFactory: RequestFactory) { def apply():...