Skip to content

Commit

Permalink
Revert "HBASE-24426 : Provide regionName in warning during failure to…
Browse files Browse the repository at this point in the history
… move region from CLOSING to CLOSED (apache#1772)"

This reverts commit 9a0a24f.
  • Loading branch information
virajjasani committed May 25, 2020
1 parent 9a0a24f commit aa738c2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,7 @@ public boolean visit(Result result) throws IOException {
MetaTableAccessor.updateRegionState(this.connection, hrl.getRegion(),
RegionState.State.CLOSED);
} catch (IOException ioe) {
LOG.warn("Failed moving {} from CLOSING to CLOSED",
hrl.getRegion().getRegionNameAsString(), ioe);
LOG.warn("Failed moving {} from CLOSING to CLOSED", ioe);
}
} else if (rs.isOpening() || rs.isOpened()) {
this.reassigns.add(hrl.getRegion());
Expand Down

0 comments on commit aa738c2

Please sign in to comment.