ctubbsii commented on code in PR #5192:
URL: https://github.com/apache/accumulo/pull/5192#discussion_r1901322201
##########
server/base/src/main/java/org/apache/accumulo/server/manager/state/DeadServerList.java:
##########
@@ -43,9 +43,9 @@ public class DeadServerList {
public DeadServerList(ServerContext context) {
this.path = context.getZooKeeperRoot() + Constants.ZDEADTSERVERS;
- zoo = context.getZooReaderWriter();
+ zoo = context.getZooSession().asReaderWriter();
try {
- context.getZooReaderWriter().mkdirs(path);
+ context.getZooSession().asReaderWriter().mkdirs(path);
Review Comment:
Fixed in ecc9e4593b998bfe090a2b1cdcdc4ad161759972
--
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]