k5342 commented on code in PR #3842:
URL: https://github.com/apache/ozone/pull/3842#discussion_r1099721809
##########
hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/OzoneBucket.java:
##########
@@ -650,11 +650,12 @@ public long getUsedNamespace() {
* keys if key prefix is null.
*
* @param keyPrefix Bucket prefix to match
+ * @param delimiter A delimiter to group matched keys
* @return {@code Iterator<OzoneKey>}
*/
- public Iterator<? extends OzoneKey> listKeys(String keyPrefix)
- throws IOException {
- return listKeys(keyPrefix, null);
+ public Iterator<? extends OzoneKey> listKeys(String keyPrefix,
+ String delimiter) throws IOException {
+ return listKeys(keyPrefix, delimiter, null);
Review Comment:
Hi @DaveTeng0, this change will not change the result for OBS buckets (the
delimiter param is ignored for now).
--
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]