Skip to content

Commit

Permalink
HDDS-7068: EC: Prematurely re-throwed the exception in reconstruction…
Browse files Browse the repository at this point in the history
… cleanup loop. (#3639)
  • Loading branch information
umamaheswararao committed Jul 29, 2022
1 parent daf2578 commit 57d620d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Expand Up @@ -179,8 +179,8 @@ public void reconstructECContainerGroup(long containerID,
LOG.error("Exception while deleting the container {} at target: {}",
containerID, dn, ioe);
}
throw e;
}
throw e;
}

}
Expand Down
Expand Up @@ -64,6 +64,10 @@ public void run() {
// respective container. HDDS-6582
// 5. Close/finalize the recovered containers.
long containerID = this.reconstructionCommandInfo.getContainerID();
if (LOG.isDebugEnabled()) {
LOG.debug("Starting the EC reconstruction of the container {}",
containerID);
}
try {
SortedMap<Integer, DatanodeDetails> sourceNodeMap =
reconstructionCommandInfo.getSources().stream().collect(Collectors
Expand Down

0 comments on commit 57d620d

Please sign in to comment.