You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
When uploading a file, I am intermittently, but fairly regularly (1/3) getting the following error:
Error: callback called twice
at onCb (/node_modules/pend/index.js:36:23)
at Response.<anonymous> (/node_modules/s3/lib/index.js:401:9)
at Request.<anonymous> (/node_modules/aws-sdk/lib/request.js:364:18)
at Request.callListeners (/node_modules/aws-sdk/lib/sequential_executor.js:105:20)
at Request.emit (/node_modules/aws-sdk/lib/sequential_executor.js:77:10)
at Request.emit (/node_modules/aws-sdk/lib/request.js:683:14)
at Request.transition (/node_modules/aws-sdk/lib/request.js:22:10)
at AcceptorStateMachine.runTo (/node_modules/aws-sdk/lib/state_machine.js:14:12)
at /node_modules/aws-sdk/lib/state_machine.js:26:10
at Request.<anonymous> (/node_modules/aws-sdk/lib/request.js:38:9)
at Request.<anonymous> (/node_modules/aws-sdk/lib/request.js:685:12)
at Request.callListeners (/node_modules/aws-sdk/lib/sequential_executor.js:115:18)
at Request.emit (/node_modules/aws-sdk/lib/sequential_executor.js:77:10)
at Request.emit (/node_modules/aws-sdk/lib/request.js:683:14)
at Request.transition (/node_modules/aws-sdk/lib/request.js:22:10)
at AcceptorStateMachine.runTo (/node_modules/aws-sdk/lib/state_machine.js:14:12)
This was an issue in 2014 as well, but Amazon fixed their library. It appears that this issue has cropped up again: aws/aws-sdk-js#1617
Maybe it's time to revive the wtfAmazon workaround again?
Here's where it was implemented: 3f26bc1
And subsequently removed when it was fixed in the dependency: b6d76af
It should be noted that I'm manually passing in an s3Client per the workaround instructions in #175
The text was updated successfully, but these errors were encountered:
I wonder if the uploader.on('end') handler gets called even if there's an error? It's not easy to test, so I might wrap the end handler to check if error already happened...(and vice versa). I'll report the results of that change here if I can remember to.
/** s3-client client created from existing AWS.S3 object. * See https://github.com/matrus2/node-s3-client#readme */consts3Client=s3.createClient({s3Client: storage,maxAsyncS3: MAX_ASYNC,s3RetryCount: RETRY_COUNT,s3RetryDelay: RETRY_DELAY,multipartUploadThreshold: MULTIPART_UPLOADS_MINSIZE,multipartUploadSize: MULTIPART_UPLOADS_PARTSIZE,});/** @param {AWS.S3.PutObjectRequest} params AWS.S3 putObject params except for * `Body` and `ContentLength`. */functionsaveFile(srcPath,params){const{Body: bodyFromParams,ContentLength: contentLengthFromParams,}=params;if(bodyFromParams||contentLengthFromParams){thrownewError(`saveFile params not allowed: Body, ContentLength.`);}returnnewPromise((resolve,reject)=>{constuploader=s3Client.uploadFile({localFile: srcPath,s3Params: params,});uploader.on('error',reject);uploader.on('end',resolve);});}
Error: callback called twice
at onCb (/editor/node_modules/pend/index.js:36:23)
at Response.<anonymous> (/editor/node_modules/s3-client/lib/index.js:406:9)
at Request.<anonymous> (/editor/node_modules/aws-sdk/lib/request.js:364:18)
at Request.callListeners (/editor/node_modules/aws-sdk/lib/sequential_executor.js:106:20)
at Request.emit (/editor/node_modules/aws-sdk/lib/sequential_executor.js:78:10)
at Request.emit (/editor/node_modules/aws-sdk/lib/request.js:683:14)
at Request.transition (/editor/node_modules/aws-sdk/lib/request.js:22:10)
at AcceptorStateMachine.runTo (/editor/node_modules/aws-sdk/lib/state_machine.js:14:12)
at /editor/node_modules/aws-sdk/lib/state_machine.js:26:10
at Request.<anonymous> (/editor/node_modules/aws-sdk/lib/request.js:38:9)
at Request.<anonymous> (/editor/node_modules/aws-sdk/lib/request.js:685:12)
at Request.callListeners (/editor/node_modules/aws-sdk/lib/sequential_executor.js:116:18)
at Request.emit (/editor/node_modules/aws-sdk/lib/sequential_executor.js:78:10)
at Request.emit (/editor/node_modules/aws-sdk/lib/request.js:683:14)
at Request.transition (/editor/node_modules/aws-sdk/lib/request.js:22:10)
at AcceptorStateMachine.runTo (/editor/node_modules/aws-sdk/lib/state_machine.js:14:12)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When uploading a file, I am intermittently, but fairly regularly (1/3) getting the following error:
This was an issue in 2014 as well, but Amazon fixed their library. It appears that this issue has cropped up again: aws/aws-sdk-js#1617
Maybe it's time to revive the
wtfAmazon
workaround again?Here's where it was implemented: 3f26bc1
And subsequently removed when it was fixed in the dependency: b6d76af
It should be noted that I'm manually passing in an
s3Client
per the workaround instructions in #175The text was updated successfully, but these errors were encountered: