-
Notifications
You must be signed in to change notification settings - Fork 12
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
feat: support resumable upload #50
Conversation
cmd/utils.go
Outdated
|
||
// resumable download & upload | ||
partSizeFlag = "partSize" | ||
disableResumableFlag = "disable-resumable" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggest to: change to MultipartFlag = "multipartUpload"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can change to support by default after the API tested stable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default multipartUpload = false , not use resumble API
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Fixed
disableResumableFlag = "disable-resumable"
toresumableUploadFlag = "resumableUpload"
- By default, the resumable upload feature is disabled, indicated by the value false.
Description
1.Support resumableUpload flag in put command
2. update dependency
Rationale
tell us why we need these changes...
Example
NA
Changes
Notable changes: