Paweł Cembaluk

Results 11 comments of Paweł Cembaluk

My workaround for this issue was to use crosscompiled Akka together with circe for Scala 3. Here is my minimal sbt config: ```scala val circeVersion = "0.14.1" val akkaVersion =...

Flatpaks are nicely discovered by eg. dmenu and xfce4-appfinder on my install. I don't know if snaps are discovered, this issue is a feature request rather than a bug :)

I wouldn't say that's exactly the same. Please note that in code that I've provided we have restart every 20 to 30 seconds. Let's say that the restart is done...

It seems to work fine. What mean by that is we don't encounter `BufferOverflowException` anymore. It even enables some kind of backpressure after ~8 failed requests: ``` [DEBUG] [06/07/2022 13:40:52.280]...

It isn't spurious. It's clearly visible that after the backpressure kicks in, the time between "Dispatching request [POST /_bulk Strict(815 bytes)] to pool" and the actual request is at least...

Just specifying the path to the field inside array (`innerList.int`) works for me using Compass/MongoDB shell. https://www.mongodb.com/docs/manual/tutorial/project-fields-from-query-results/#projection-on-embedded-documents-in-an-array - the syntax is described here.

No pressure, thank you for the information.

I've encountered the same problem today using Flyway 9.3.1. Here is my minimal example in Scala: https://github.com/AvaPL/flyway-postgres-concurrent-index-issue.

The solution from @sujeet100 is indeed tail-recursive but still causes stack overflows because of `ast` evaluation for large lists. Here is my code that doesn't have this issue: ```scala query[Person].filter(person...

Hi, I don't think this issue should be closed. As described by @nettworker, the logic in https://github.com/zitadel/zitadel/blob/v2.27.4/internal/database/postgres/config.go#L146-L150 seems to be invalid. When the admin user is used, the database is...