Skip to content

Commit

Permalink
Rethrow KeeperException.NoAuthException
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ctubbsii committed Jan 14, 2025
1 parent d0ee570 commit 6636fea
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ protected void announceExistence(HostAndPort clientAddress)
} catch (KeeperException.NoAuthException e) {
LOG.error("Failed to write to ZooKeeper. Ensure that"
+ " accumulo.properties, specifically instance.secret, is consistent.");
throw e;
}

compactorLock =
Expand Down

0 comments on commit 6636fea

Please sign in to comment.