You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (hostLbCheckExecutor != null && !hostLbCheckExecutor.isShutdown()) {
459
+
logger.info("Shutting down the preferred host checker task {}", name);
459
460
hostLbCheckExecutor.shutdown();
460
461
try {
461
462
if (!hostLbCheckExecutor.awaitTermination(1, TimeUnit.SECONDS)) {
462
463
hostLbCheckExecutor.shutdownNow();
463
464
}
464
465
} catch (InterruptedExceptione) {
465
-
logger.debug("Forcing {} shutdown as it did not shutdown in the desired time due to: {}",
466
+
logger.debug("Forcing the preferred host checker task {} shutdown as it did not shutdown in the desired time due to: {}",
466
467
name, e.getMessage());
467
468
hostLbCheckExecutor.shutdownNow();
468
469
}
469
470
}
470
471
if (checkInterval > 0L) {
471
-
logger.info("Scheduling preferred host task with host.lb.interval={}ms", checkInterval);
472
+
if ("shuffle".equalsIgnoreCase(lbAlgorithm)) {
473
+
logger.info("Scheduling the preferred host checker task to trigger once (to apply lb algorithm '{}') after host.lb.interval={} ms", lbAlgorithm, checkInterval);
* The timeout (in seconds) for the snapshot merge operation, mainly used for classic volume snapshots and disk-only VM snapshots on file-based storage.<br>
160
+
* This configuration is only considered if libvirt.events.enabled is also true. <br>
0 commit comments