Ross A. Baker

Results 108 issues of Ross A. Baker

When we release, we have to change the version number twice in the README and once in the tut. The README is currently included directly in the site. sbt-microsite has...

good first issue
:books: docs

`tutQuick` returns `Set()` whether anything is rendered or not. I'm not sure whether I expect it to return the sources or targets, but I didn't expect an empty set when...

```scala //> using scala "2.13" //> using lib "org.http4s::http4s-blaze-server:0.23.12" //> using lib "org.http4s::http4s-blaze-client:0.23.12" //> using lib "org.slf4j:slf4j-nop:1.7.36" import cats.effect._ import cats.syntax.all._ import fs2._ import org.http4s._ import org.http4s.implicits._ import org.http4s.blaze.server._ import...

Currently, idle timeouts just drop the connection. The `QuietTimeoutStage` has no concept of whether a response status has been written yet, and therefore can't safely render a 5xx. It would...

enhancement
module:blaze-server

What should an idle timeout on the server do? * Is it only when a request is active? * When is a request "active"? Once the request line is received?...

RFC
module:blaze-server

From http4s/http4s#2350: https://travis-ci.org/http4s/http4s/jobs/478504963#L3922 From http4s/http4s#2351: https://travis-ci.org/http4s/http4s/jobs/478520105#L3696

testing
module:blaze-server

We've gotten this question a few times. We should get an FAQ into the docs, and this should be in it. For posterity, here's my answer on gitter: > the...

module:blaze-client
docs

http4s/http4s#796 was a bug, but it's too easy to deadlock a server. We should consider a timer so borrows don't hang indefinitely for the next time we or our an...

enhancement
module:blaze-client

I can sometimes hit this `evalMap`ping a basic `GET` request 20,000 times. ``` 2018-11-15 02:30:44 ERROR [scala-execution-context-global-346] [] [Http1Connection.scala:153] - Error rendering request java.nio.channels.WritePendingException: null at sun.nio.ch.AsynchronousSocketChannelImpl.write(AsynchronousSocketChannelImpl.java:352) at sun.nio.ch.AsynchronousSocketChannelImpl.write(AsynchronousSocketChannelImpl.java:416) at...

bug
module:blaze-client

Disabled on CI in https://github.com/http4s/http4s/pull/3058. Has been failing a lot on Scala 2.13 lately, but never locally. Deemed to be adding more noise than signal for now. Help wanted.

CI
module:blaze-client
testing