Krzysztof Ciesielski

Results 43 comments of Krzysztof Ciesielski

Thanks for reporting @arobson73 @adamw I did some initial investigation. For some reason the Ammonite highlighter doesn't properly use the `fansi.Attr.Reset` param passed here: https://github.com/softwaremill/scala-clippy/blob/master/plugin/src/main/scala-2.11/com/softwaremill/clippy/DelegatingPosition.scala#L19 Changing to `fansi.color.Reset` ot `fansi.Color.makeAttr(Console.RESET,...

@arobson73 you also need to change version to `0.5.1-SNAPSHOT` in `.sbt/0.13/plugins/build.sbt`

@arobson73 looks like snapshots repo is not being used. Could you also add the resolver line: ```scala resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" ``` to `.sbt/0.13/plugins/build.sbt` ?

Hi Yun. This looks like internal committer actor is not responding for some reason. If retry results in dead letters, then it looks like this actor is dead. Even ignoring...

We are getting similar errors: ``` Offset commit failed on partition xxx-yyy-32 at offset 642258: The request timed out. ``` from `org.apache.kafka.clients.consumer.internals.ConsumerCoordinator` which causes our stream to restart. Happens on...

I could not reproduce this with Tapir 1.3.0. Feel free to reopen if you're still having such issues with Swagger endpoints.

@hamnis fyi all the dependencies you mentioned are now released.

@kamilkloch I'd like to ask about your comment in the Reddit thread: > it turned out to be costly both in terms of CPU cycles and GC pressure I'd like...

@kamilkloch update: I ran these comparisons using IntelliJ profiler and the difference in CPU load is visible there. **vanilla http4s** "Run" view: ![image](https://github.com/softwaremill/tapir/assets/1413553/f353996b-35c3-461b-b6b0-1d2dbfee63d2) Profiler timeline view: ![image](https://github.com/softwaremill/tapir/assets/1413553/f6c108be-9c84-4261-8f6d-22d0bda32d47) **tapir-http4s** "Run" view:...

Bumping this, as we are experiencing a related issue in Tapir: https://github.com/softwaremill/tapir/issues/3835 If I understand correctly, with code generated like this: ```scala package object types { type WidgetId = WidgetId.Type...