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
I found that the method which was called onFlush is not implemented, thus throwing UnsupportedOperationException exception.
Is there any work I can do to help implement/solve that issue?
onFlush is not reactive, reactiveOnFlush should be called instead.
For this situations, with have a custom exception in the Logger:
```
throw LOG.nonReactiveMethodCall( "reactiveOnFlush" );
```
onFlush is not reactive, reactiveOnFlush should be called instead.
For this situations, with have a custom exception in the Logger:
```
throw LOG.nonReactiveMethodCall( "reactiveOnFlush" );
```
In Micronaut project we tried to use https://guides.micronaut.io/latest/micronaut-data-hibernate-reactive-gradle-kotlin.html

Everything seems to be fine until we test modifying operations like save or update.
Then we end up which this exception:
I found that the method which was called onFlush is not implemented, thus throwing UnsupportedOperationException exception.
Is there any work I can do to help implement/solve that issue?
https://github.com/hibernate/hibernate-reactive/blame/c1d51e6d89d85dffa4fedc510e3b03d57b36c5cd/hibernate-reactive-core/src/main/java/org/hibernate/reactive/event/impl/DefaultReactiveFlushEventListener.java#L62
The text was updated successfully, but these errors were encountered: