This is an automated email from the ASF dual-hosted git repository. kturner pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
commit 95b930a8bad3d7a410cc55d4d86368420100a62f Author: Keith Turner <[email protected]> AuthorDate: Wed Apr 15 17:10:30 2026 +0000 restores log messages lost in merge --- .../apache/accumulo/core/spi/scan/ConfigurableScanServerSelector.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/org/apache/accumulo/core/spi/scan/ConfigurableScanServerSelector.java b/core/src/main/java/org/apache/accumulo/core/spi/scan/ConfigurableScanServerSelector.java index 1f0428dfa6..20ca80aa30 100644 --- a/core/src/main/java/org/apache/accumulo/core/spi/scan/ConfigurableScanServerSelector.java +++ b/core/src/main/java/org/apache/accumulo/core/spi/scan/ConfigurableScanServerSelector.java @@ -532,6 +532,7 @@ public class ConfigurableScanServerSelector implements ScanServerSelector { Duration busyTO = Duration.ofMillis(profile.getBusyTimeout(attempts)); Duration delay = computeDelay(errorAttempts); + LOG.trace("Returning delay:{} busyTimeout:{} servers to use: {}", delay, busyTO, serversToUse); return new ScanServerSelections() { @Override public String getScanServer(TabletId tabletId) {
