Ooops... a bit embarassing. Some methods call `.thenApply` instead of `.thenCompose`. [Here's an example](https://github.com/hibernate/hibernate-reactive/blob/8f78d1ed845fd929f45ecc5a7c354aa9e655d4bb/hibernate-reactive-core/src/test/java/org/hibernate/reactive/ReactiveStatelessWithBatchTest.java#L367) ```java .thenApply( pigs -> { pigs.get( 0 ).setName( "One updated" ); pigs.get( 1 ).setName( "Two updated" ); return s.update( 10, pigs.toArray() ); } ) ```