From 6805e9052321daf3b1c406698e0aea2e2789da0f Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 10 Feb 2020 10:14:43 +0100 Subject: executor: increase input buffer size I bumped input buffer size on Go side in: a2af37f0 prog: increase encodingexec buffer size But I forgot to increase the size on the executor side. Do this and add comments re keeping them in sync. --- prog/encodingexec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prog/encodingexec.go') diff --git a/prog/encodingexec.go b/prog/encodingexec.go index abcfeffba..b5c410287 100644 --- a/prog/encodingexec.go +++ b/prog/encodingexec.go @@ -49,7 +49,7 @@ const ( ) const ( - ExecBufferSize = 4 << 20 + ExecBufferSize = 4 << 20 // keep in sync with kMaxInput in executor.cc ExecNoCopyout = ^uint64(0) ) -- cgit mrf-deployment