You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that they are executed on the Vert.x context which made the database call, not the context they were operating on when they were queued.
In
BlockingIdentifierGenerator
, when a new block is allocated, invocations ofgenerate
method are queued:hibernate-reactive/hibernate-reactive-core/src/main/java/org/hibernate/reactive/id/impl/BlockingIdentifierGenerator.java
Line 94 in 75e5748
After the result is received, queued tasks are executed:
hibernate-reactive/hibernate-reactive-core/src/main/java/org/hibernate/reactive/id/impl/BlockingIdentifierGenerator.java
Line 87 in 75e5748
The problem is that they are executed on the Vert.x context which made the database call, not the context they were operating on when they were queued.
This explains the error logs in quarkusio/quarkus#32533
The text was updated successfully, but these errors were encountered: