bzamfir
bzamfir

Reputation: 4886

AWS.SDK TransferUtility.Upload hangs

I have the following code

Dim fileTransferUtility = New TransferUtility(new AmazonS3Client(credentials,region))
Dim fileTransferUtilityRequest = New TransferUtilityUploadRequest With {
   .BucketName = bucketName,
   .FilePath = sourceFileName,
   .PartSize = 6291456,
   .Key = awsFileKey
}
fileTransferUtility.Upload(fileTransferUtilityRequest)

This code worked just fine up until

But hangs starting from

It does never return, with exception or anything. It simply hangs.

The environment is

Did anyone encountered this problem, and found any solution?


I created an issue on AWS.SDK at https://github.com/aws/aws-sdk-net/issues/1648

Upvotes: 0

Views: 474

Answers (1)

bzamfir
bzamfir

Reputation: 4886

Issue fixed with versions AWSSDK.Core 3.3.107.16 AWSSDK.S3 3.3.111.17

Upvotes: 1

Related Questions