CLDSRV-883: CreateMultipartUpload parse checksum headers and store them in MPU overview object#6144
Conversation
Hello leif-scality,My role is to assist you with the merge of this Available options
Available commands
Status report is not available. |
Incorrect fix versionThe
Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:
Please check the |
|
LGTM |
401021f to
21a51aa
Compare
|
LGTM |
Codecov Report❌ Patch coverage is
Additional details and impacted files
@@ Coverage Diff @@
## development/9.4 #6144 +/- ##
===================================================
+ Coverage 84.84% 84.90% +0.05%
===================================================
Files 207 207
Lines 13613 13659 +46
===================================================
+ Hits 11550 11597 +47
+ Misses 2063 2062 -1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
21a51aa to
68227d0
Compare
|
LGTM |
…em in the MPU overview object
68227d0 to
ba8eaae
Compare
|
LGTM |
| details: { algorithm: 'md4' }, | ||
| }); | ||
| assert.strictEqual(result.message, 'InvalidRequest'); | ||
| assert(result.description.includes('[CRC32, CRC32C, CRC64NVME, SHA1, SHA256]')); |
There was a problem hiding this comment.
assert.match might be appropriate here so in case of error we can see the difference between actual value and expected.
Otherwise here with a boolean we'll only see true !== false and have no more details
| details: { type: 'COMPOSITE' }, | ||
| }); | ||
| assert.strictEqual(result.message, 'InvalidRequest'); | ||
| assert(result.description.includes( |
There was a problem hiding this comment.
same here, assert.match with regexp can provide more details on failure than boolean
| 'x-amz-checksum-type': 'BADTYPE', | ||
| }, err => { | ||
| assert.strictEqual(err.message, 'InvalidRequest'); | ||
| assert(err.description.includes('algorithm')); |
Uh oh!
There was an error while loading. Please reload this page.