mbaechler commented on code in PR #2903:
URL: https://github.com/apache/james-project/pull/2903#discussion_r2671763196
##########
docs/modules/servers/partials/configure/listeners.adoc:
##########
@@ -26,6 +26,10 @@ If *true* the execution will be scheduled in a reactor
elastic scheduler. If *fa
Already provided additional listeners are documented below.
+The <executionRate> property controls the number of events processed in
parallel. Defaults to 10.
Review Comment:
so it's not a rate 🙂
what about `maxConcurrency`?
##########
server/protocols/webadmin-integration-test/distributed-webadmin-integration-test/src/test/java/org/apache/james/webadmin/integration/rabbitmq/ConsistencyTasksIntegrationTest.java:
##########
@@ -143,11 +142,7 @@ TestingSession
provideSession(SessionWithInitializedTablesFactory factory) {
.server(configuration ->
CassandraRabbitMQJamesServerMain.createServer(configuration)
// Enforce a single eventBus retry. Required as Current Quotas are
handled by the eventBus.
.overrideWith(binder ->
binder.bind(RetryBackoffConfiguration.class)
- .toInstance(RetryBackoffConfiguration.builder()
- .maxRetries(1)
- .firstBackoff(Duration.ofMillis(2))
- .jitterFactor(0.5)
- .build()))
+ .toInstance(RetryBackoffConfiguration.FAST))
Review Comment:
we probably don't want to have a dependency between non-eventbus code and an
eventbus constant, right?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]