Results 14 comments of altrack

From my team's experience we had more issue than gains from having `fork := false`, and eventually converted all dozens repos to `fork := true`. Usually we had some strange...

I have never thought about this way, but all issues I have encountered were in `run`. So probably setting `fork in run := true` by default is a good middle...

Solved the issue by running: `container.start()` @qomosoloto

I have tested this snippet with the series 3 and can confirm it doesn't lock. CE is 3.4.9 FS2 is 3.6.1 Those are the version come with FS2-kafka 3.0.1 Got...

Hey @dttung2905 , thank you for checking this and writing the test. Unfortunately, I don't know the answers yet, it will take some time to check this. I'll try to...

Sorry for the delay. Yes, changing the number to string worked as expected. The issue was caused since in one of the Helm definition I had: `lagThreshold: {{ .Values.keda.kafka.lagThreshold |...

> Is that the `sttp.client3.httpclient.cats.HttpClientCatsBackend` backend? That's right sbt dependency com.softwaremill.sttp.client3 :: cats `package sttp.client3.httpclient.cats` `HttpClientCatsBackend` ```scala basicRequest .contentType(MediaType.ApplicationJson) .httpVersion(HttpVersion.HTTP_1_1) .... ``` Seems to have the same issue in 3.8.15

Dumping Cats-effect engine getting this suspicious trace: ```scala cats.effect.IOFiber@118ae5d4 BLOCKED ? delay @ sttp.client3.impl.cats.CatsMonadError.eval(CatsMonadError.scala:19) ? map @ sttp.client3.impl.cats.CatsMonadError.map(CatsMonadError.scala:9) ? flatMap @ sttp.client3.impl.cats.CatsMonadError.flatMap(CatsMonadError.scala:12) ? map @ sttp.client3.impl.cats.CatsMonadError.map(CatsMonadError.scala:9) ? map @ sttp.client3.impl.cats.CatsMonadError.map(CatsMonadError.scala:9)...

I swapped the backend to `sttp.client3.armeria.cats.ArmeriaCatsBackend` and this resolved the issue. No other change in the code was done. My use case is a batching of 4000 http requests in...