Skip to content
Merged
Show file tree
Hide file tree
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 @@ -100,5 +100,4 @@ public ContainerProtos.Result getResult() {
return result;
}


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Normally we try to avoid whitespace-only changes in unrelated files. In order to save CI time, I'm OK with it, unless someone requests other changes, too.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@adoroszlai
Thanks your reminding, I will notice next time.

}
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static ContainerCommandResponseProto logAndReturnError(
ex.getMessage(), ex.getResult().getValueDescriptor().getName(), ex);
}
} else {
log.info(logInfo, request.getCmdType(), request.getTraceID(),
log.warn(logInfo, request.getCmdType(), request.getTraceID(),
ex.getMessage(), ex.getResult().getValueDescriptor().getName(), ex);
}
return getContainerCommandResponse(request, ex.getResult(), ex.getMessage())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,8 @@ private BlockData getBlockByID(DBHandle db, BlockID blockID,

BlockData blockData = db.getStore().getBlockDataTable().get(blockKey);
if (blockData == null) {
throw new StorageContainerException(NO_SUCH_BLOCK_ERR_MSG,
NO_SUCH_BLOCK);
throw new StorageContainerException(NO_SUCH_BLOCK_ERR_MSG +
" BlockID : " + blockID, NO_SUCH_BLOCK);
}

return blockData;
Expand Down