Vladimir Garvardt

Results 59 comments of Vladimir Garvardt

Tried to reproduce an issue with a test and I can not - I see a record in the finished jobs log table and panic is not interrupting the job...

Ah, this is just an example of hook usage, not the production-ready code.

Stacktrace info lands also to the tracing span and logger context - https://github.com/vgarvardt/gue/blob/c9efae2dabc919bd44cb1eadce095b49aeec7b7a/worker.go#L298-L299 - use `WithWorkerLogger` or `WithPoolLogger` to set the logger instance https://github.com/vgarvardt/gue#logging Regarding the buffer size - the...

Hi. Any chances to move this PR forward?

Will close the issue as it is pretty outdated. In case you'll be able to reproduce empty panic stacktrace feel free to reopen the issue.

Had similar issue and had to find a workaround to fix flaky tests that were failing because of the async close. Here is my current solution: ```golang client, err :=...

Tried to dig into this issue, quite a lot of layers of abstraction for pretty simple DB structure, but everything end up at https://github.com/ory/keto/blob/master/internal/persistence/sql/persister.go#L88 that is calling `pop.Connection.Create(...)` method. ORM...

According to https://stackoverflow.com/questions/24384407/cannot-set-transaction-read-write-mode-during-recovery-error > You have connected to a read-replica server in hot standby mode - a streaming replica, or one that's using WAL archiving, it doesn't matter. > These...

`gue` is using existing DB connection, so the app you're building is connecting to the DB server and this connection (pool actually) is used by the library

As of https://github.com/vgarvardt/gue/pull/135 panic buffer size is configurable