Skip to content

Commit 6636fea

Browse files
committed
Rethrow KeeperException.NoAuthException
In be22dee for apache#5192, the exception was unintentionally no longer being rethrown after logging. This change reverts that mistake and rethrows the exception after logging.
1 parent d0ee570 commit 6636fea

File tree

1 file changed

+1
-0
lines changed
  • server/compactor/src/main/java/org/apache/accumulo/compactor

1 file changed

+1
-0
lines changed

server/compactor/src/main/java/org/apache/accumulo/compactor/Compactor.java

+1
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,7 @@ protected void announceExistence(HostAndPort clientAddress)
265265
} catch (KeeperException.NoAuthException e) {
266266
LOG.error("Failed to write to ZooKeeper. Ensure that"
267267
+ " accumulo.properties, specifically instance.secret, is consistent.");
268+
throw e;
268269
}
269270

270271
compactorLock =

0 commit comments

Comments
 (0)