mirror of
https://github.com/versity/versitygw.git
synced 2026-09-27 10:24:20 +00:00
feat: Closes #290, implemented request body stream reading for PutObject and UploadPart actions.
This commit is contained in:
committed by
Ben McClelland
parent
90bb43f7c9
commit
27eb43d089
@@ -289,9 +289,10 @@ func runGateway(ctx context.Context, be backend.Backend) error {
|
||||
}
|
||||
|
||||
app := fiber.New(fiber.Config{
|
||||
AppName: "versitygw",
|
||||
ServerHeader: "VERSITYGW",
|
||||
BodyLimit: int(blimit),
|
||||
AppName: "versitygw",
|
||||
ServerHeader: "VERSITYGW",
|
||||
BodyLimit: int(blimit),
|
||||
StreamRequestBody: true,
|
||||
})
|
||||
|
||||
var opts []s3api.Option
|
||||
|
||||
Reference in New Issue
Block a user