Replies: 1 comment 6 replies
-
When resume is called, is there any error in the logs? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am following samples mentioned here to pause and resume file upload to S3 bucket.
Issue I am facing is that the moment
upload.pause()
is calledjava.util.concurrent.CancellationException: null
is thrown andTransfer failed.
is printed in log.So, if I catch exception - I am able to persist upload information using
resumableFileUpload.serializeToFile(path)
but resume is not happening when this line executesFileUpload resumedUpload = transferManager.resumeUploadFile(persistedResumableFileUpload)
. What am I missing here? please advise.I am using 2.20.0 version of
s3-transfer-manager, aws-crt, aws-crt-client
under software.amazon.awssdkBeta Was this translation helpful? Give feedback.
All reactions