Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from
May 4, 2023
Merged
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 @@ -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;
Expand Down