Wrong 'Get object' response for multipart objects #142
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-http-gw#142
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When attempting to get an object, uploaded before as a multipart data, I receive JSON with parts list instead of object data:
Expected Behavior
Expect to receive whole object data, regardless of how exactly it was uploaded.
Current Behavior
Returns json with list of parts addresses.
Steps to Reproduce (for bugs)
GET /get/testBucket/testFile
Payload fetching in s3-gw that support both regular and multipart objects:
func (n *Layer) initObjectPayloadReader(ctx context.Context, p getParams) (io.Reader, error) {
Done in #143