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 Steve Loughran
parent 1756b492ca
commit 4670f9e8b0

View File

@ -191,11 +191,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;