-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BlobCodec and ClobCodec.encode(…) fails with IllegalStateException due to blocking #129
Comments
The |
Fixing the reading side is probably quite straight-forward as H2 isn't backed by anything reactive. The complexity comes into play when trying to write values to H2. We need to resolve each parameter that provides a |
Similar error occurs at
when using Spring Security Oauth2 client configured with H2 and
|
Same case as with #127. To solve that issue, we need to defer the stream consumption until statement execution.
Reproducer:
Code must be executed on a
NonBlocking
Reactor Thread such asSchedulers.parallel()
to reproduce the issue.The text was updated successfully, but these errors were encountered: