Skip to content

Commit

Permalink
[core] Double max inbound ODC message size to 32MB
Browse files Browse the repository at this point in the history
  • Loading branch information
teo committed Oct 13, 2023
1 parent b65b93c commit 8dbba2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/integration/odc/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const (
ODC_PADDING_TIMEOUT = 3 * time.Second
ODC_STATUS_TIMEOUT = 3 * time.Second
ODC_POLLING_INTERVAL = 3 * time.Second
ODC_MAX_INBOUND_MESSAGE_SIZE = 16 * 1024 * 1024 // 16 MiB
ODC_MAX_INBOUND_MESSAGE_SIZE = 32 * 1024 * 1024 // 16 MiB
)

type Plugin struct {
Expand Down

0 comments on commit 8dbba2c

Please sign in to comment.