Tejaskriya commented on code in PR #6751:
URL: https://github.com/apache/ozone/pull/6751#discussion_r1624038489
##########
hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/OzoneBucket.java:
##########
@@ -675,6 +675,16 @@ public void deleteKeys(List<String> keyList) throws
IOException {
proxy.deleteKeys(volumeName, name, keyList);
}
+ /**
+ * Deletes the given list of keys from the bucket.
+ * @param keyList List of the key name to be deleted.
+ * @param isQuiet flag to not throw exception if delete fails
+ * @throws IOException
+ */
+ public Map<String, Pair<String, String>> deleteKeysQuiet(List<String>
keyList, Boolean isQuiet) throws IOException {
Review Comment:
Thanks for the review! I have made the changes as you have suggested. Also
introduced a `ErrorInfo` class under `om/helpers` as a wrapper for the error
details.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]