Skip to content
This repository has been archived by the owner on Apr 30, 2019. It is now read-only.

YBK-183: Garbage collector deletes active ledgers present in zookeeper #17

Open
wants to merge 1 commit into
base: yahoo-4.3
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ synchronized private void initialize(String path, int level) throws KeeperExcept
}
}
String curLNode = curLevelNodes.get(level);
if (curLNode != null) {
// If no level 3 nodes are present then go to the next node in level 2
if (curLNode != null || moveToNext(level)) {
// Traverse down through levels 0-3
// The nextRange becomes a listing of the children
// in the level4 directory.
Expand Down