HADOOP-18727. Fix WriteOperations.listMultipartUploads function description (#5613)

Contributed by Dongjoon Hyun
This commit is contained in:
Dongjoon Hyun 2023-05-04 05:03:48 -07:00 committed by GitHub
parent bd607951c0
commit 27776ac45e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,11 +192,11 @@ int abortMultipartUploadsUnderPath(String prefix)
throws IOException;
/**
* Abort multipart uploads under a path: limited to the first
* List in-progress multipart uploads under a path: limited to the first
* few hundred.
* @param prefix prefix for uploads to abort
* @return a count of aborts
* @throws IOException trouble; FileNotFoundExceptions are swallowed.
* @param prefix prefix for uploads to list
* @return a list of in-progress multipart uploads
* @throws IOException on problems
*/
List<MultipartUpload> listMultipartUploads(String prefix)
throws IOException;