-
Notifications
You must be signed in to change notification settings - Fork 119
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
fix: tre egress store data updated S3 return #1054
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## develop #1054 +/- ##
===========================================
+ Coverage 51.93% 59.56% +7.62%
===========================================
Files 238 126 -112
Lines 14508 9224 -5284
Branches 2361 1475 -886
===========================================
- Hits 7535 5494 -2041
+ Misses 6106 3288 -2818
+ Partials 867 442 -425
Continue to review full report at Codecov.
|
@@ -70,6 +70,7 @@ describe('Create URL scenarios', () => { | |||
StorageClass: 'STANDARD', | |||
projectId: 'TRE-Project', | |||
workspaceId: 'ea8e5286-45ca-402a-8c98-7d4495f646e2', | |||
ChecksumAlgorithm: [], // new attribute introduced in Feb 2022 https://aws.amazon.com/blogs/aws/new-additional-checksum-algorithms-for-amazon-s3/ |
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.
I don't think the comment is necessary
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.
Sanket suggested it so people that look at this test later know why it was needed.
Issue #, if available:
Description of changes:
S3 introduced a new attribute in their
listObjectsV2
method that contains the checksum algorithm for S3 objects in Feb 2022. The test did not expect the attribute. The attribute is empty as we are not specifying a checksum algorithm duringput
calls.Checklist:
AS review ticket id:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.