From 8dbba2c7a064321e8da09a849c6afbb45000e3fd Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Fri, 13 Oct 2023 09:29:09 +0200 Subject: [PATCH] [core] Double max inbound ODC message size to 32MB --- core/integration/odc/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/integration/odc/plugin.go b/core/integration/odc/plugin.go index 2f38cf5d..a787b14f 100644 --- a/core/integration/odc/plugin.go +++ b/core/integration/odc/plugin.go @@ -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 {