lhotari commented on code in PR #23433:
URL: https://github.com/apache/pulsar/pull/23433#discussion_r1795263376
##########
pulsar-broker/src/test/java/org/apache/pulsar/broker/loadbalance/extensions/ExtensibleLoadManagerCloseTest.java:
##########
@@ -88,14 +88,18 @@ private ServiceConfiguration brokerConfig() {
config.setLoadManagerClassName(ExtensibleLoadManagerImpl.class.getName());
config.setLoadBalancerDebugModeEnabled(true);
config.setBrokerShutdownTimeoutMs(100);
+
+ // Reduce these timeout configs to avoid failed tests being blocked
too long
+ config.setMetadataStoreOperationTimeoutSeconds(5);
+ config.setNamespaceBundleUnloadingTimeoutMs(5000);
return config;
}
- @Test
+ @Test(invocationCount = 10)
Review Comment:
Is `invocationCount` left here to ensure that we don't regress? How is this
a fast test?
--
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]