Kai Zander
Kai Zander
@PhilippC Can you tell us when the next stable version will be on Google Play? The current stable version is still 1.09c-r0 from over a year ago. Are the later...
You could collect the `Mono`s into a list like this: ```java List monos = new ArrayList(); stateMachine.getStateMachineAccessor() .doWithAllRegions(access -> monos.add(access.resetStateMachineReactively(context))); Mono.when(monos).thenEmpty(stateMachine.startReactively()); ``` But I agree it's not that ideal...
Unfortunately, the documentation doesn't mention this limitation, according to the info box in the [section on load balancing](https://docs.spring.io/spring-cloud-gateway/docs/current/reference/html/#reactive-loadbalancer-client-filter): > Gateway supports all the LoadBalancer features.
> Do you see yourself using SimpleAsyncTaskScheduler in such a scenario, configuring a higher number of internal scheduler threads if the option was available? I guess so, but wouldn't it...
Yes that was the previous behaviour and I found it somewhat intuitive. However I could also understand the new behaviour to be "correct", considering that there _are_ multiple instances... What...
Okay, as I said I can accept the new behaviour as well. I'll have to update my tests to no longer rely on the default instance but explicitly inject and...
@ttddyy > I will likely add this custom convention implementation to the library Is there an update on this? I just stumbled upon this myself. Both of the suggested workarounds...
Thanks for confirming this. I have a feeling that a fix may be a bit more involved, considering that preconditions are generally run _after_ validations (and in many cases _have_...
The reference docs contain recommendations on indexing the metadata tables: https://docs.spring.io/spring-batch/reference/6.0/schema-appendix.html#recommendationsForIndexingMetaDataTables
After more debugging, I'm getting more confused, perhaps the logic here is inverted as well? https://github.com/spring-projects/spring-batch/blob/fa73e01f40d6cd7e8274b473a17e8c0c387fae84/spring-batch-core/src/main/java/org/springframework/batch/core/step/item/ChunkOrientedStep.java#L688-L702 Why is `this.skipPolicy.shouldSkip()` negated? This error, which is logged when the `SkipPolicy` _does_ indicate...