Dariusz Jędrzejczyk

Results 210 comments of Dariusz Jędrzejczyk

This care should also be applied for the testing module that has a link on the site.

General comment around the change of structure and URIs – do you have a plan to redirect existing links to our documentation out in the wild to the new structure?...

Last remark: `-PforcePdf` does not fail if the `asciidoctor` command was not installed. I think it should fail the build if this option is used. I think this can be...

Closing as explained in https://github.com/reactor/reactor-core/issues/3340#issuecomment-2242821598.

Hey @jmmerz, The behaviour is expected -> you are observing the effects of the evolution of `Mono` to lazy evaluation. Despite being subscribed-to eagerly, the later sources do not receive...

Hey. I looked into a similar case on the [Micrometer Slack](https://micrometer-metrics.slack.com/archives/C041BLFS56C/p1706722548631979). I don't feel there was a conclusive outcome unfortunately, so let me just gather the resources mentioned in that...

Thank you for the report. Indeed, something is wrong. I don't know yet what is wrong in our configuration. We use a combination of [mrjar-gradle-plugin](https://github.com/melix/mrjar-gradle-plugin) with Gradle toolchains. If you...

Hey, @Sage-Pierce ! I apologize it took some time to respond. I reworked the bufferTimeout operator with fair backpressure recently, that's the reason for it. Considering all existing buffer* implementations...

> I don't think that there is currently another way to implement "give me `n` distinct items at a time", though I initially thought there could be with something like...

Thanks. For `bufferTimeout`: Replace .buffer(2, HashSet::new) with .bufferTimeout(2, Duration.ofDays(30), HashSet::new) and you can observe the same outcome. Out of the others, `bufferWhen` also works with a `Supplier` of `Collection`, but...