-
Notifications
You must be signed in to change notification settings - Fork 285
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
uploadpart method missing parameter #1333
Comments
Feel free to contribute by sending a PR/Changes with functional tests @MilkChan01 . |
Also please take a look at #1325 |
pr : #1334 |
@MilkChan01 @prakashsvmx A PR related to this issue (#1334) introduced a regression with |
I've opened another issue for that #1374 |
`
async uploadPart(partConfig: {
bucketName: string
objectName: string
uploadID: string
partNumber: number
headers: RequestHeaders
}) {
const { bucketName, objectName, uploadID, partNumber, headers } = partConfig
}
`
This method should receive payload parameters ,It should be changed to the following:
async uploadPart(partConfig: { bucketName: string objectName: string uploadID: string partNumber: number headers: RequestHeaders }),paylod: Binary){ //....... const res = await this.makeRequestAsync(requestOptions,paylod) //..... }
The text was updated successfully, but these errors were encountered: