Ryan Plessner

Results 25 comments of Ryan Plessner

Its not ideal but that is a possible solution, I don't think we currently have an ETA on the next release. Another option might be to try and downgrade the...

Hi @KovaxG I believe this is an issue with the docs. I think #1250 fixes it. I will try to take a look and merge it this weekend. Basically, `Http.server.serve`...

I'm not sure we should do this. Code formatters are not that flexible and will require a lot of tuning of its options to get it to a place we...

I feel like this happens because `::` is not really sequential, it is independent (and mostly Applicative). Part of me feels like Auth should happen in a Finagle Filter but...

Oh also @d-s-d what version of Finch are you using?

> Sorry for omitting the version. No problem. Given that we've changed to monthly releases the potential for version drift is higher, so we should probably have a template for...

I'm not a big fan of combinator either. As for whether error accumulation is useful, I am a heavy user of error accumulation especially in conjunction with `should` and our...

Hi @dkulichkin. One approach is to use Cats' `Validated`. I had opened [this](https://github.com/finagle/finch/pull/808) awhile back to see about getting it into Finch as operators on `Endpoint`. This would let you...

It's published to the Sonatype Snapshot repo. As per https://finagle.github.io/featherbed/doc/01-installation.html, in sbt: ``` resolvers += Resolver.sonatypeRepo("snapshots") libraryDependencies ++= Seq( "io.github.finagle" %"featherbed_2.11" %"0.2.1-SNAPSHOT" ) ```

Reading through #874, the suggestion seems to be that caching the SslContext might mitigate this issue. A similiar effect can be achieved with the [ReloadingNetty4ServerEngineFactory](https://github.com/twitter/finagle/blob/develop/finagle-netty4/src/main/scala/com/twitter/finagle/netty4/ssl/server/ReloadingNetty4ServerEngineFactory.scala) which constructs the SslContext on...