Gilad Hoch
Gilad Hoch
Tapir version: 1.0.0 Scala version: 2.13.8 **Description** original post in gitter: https://gitter.im/softwaremill/tapir?at=62b1f6000a522647985b7307 Consider an endpoint which define a response header based on some configuration: ```scala .out(header("Keep-Alive", s"timeout=$keepAliveSeconds")) ``` same endpoint...
this comes from a co-worker, I suggested `Retry` to. in his case, we had a simple `Flow[A,Future[B]]`, which can easily be turned to `Flow[A,Try[B]]`, using something like: ``` scala .mapAsync...
seems to work fine for me. I'm already using it :+1:
Tapir version: 1.1.4 Scala version: 2.12.16 **Describe the bug** Source: [gitter thread](https://gitter.im/softwaremill/tapir?at=635e85d7bad3c73752fd95bd) What is the problem? Code that should be valid fails to compile with an error like: ``` [error]...
**Describe the bug** It seems like content type header parser is too strict. Opening this issue due to [request on discord](https://discordapp.com/channels/629491597070827530/819703129267372113/1146425677722165300) from @vigoo It seems like valid content types like:...
``` $ amm Loading... Welcome to the Ammonite Repl 2.5.4-26-9cd15abe (Scala 2.13.8 Java 11) @ import $ivy.`com.typesafe.akka::akka-http-core:10.2.10` import $ivy.$ @ import akka.http.scaladsl.model.Uri import akka.http.scaladsl.model.Uri @ import akka.http.scaladsl.model._ cmd1.sc:10: Symbol 'term...
Use case: Consider a project that serves as a library, but also provides a standalone tool packaged with sbt-assembly. Now, as a library, some resources must not be included in...