From 19a92ab2005592efe26bc34fc1de0ea001706617 Mon Sep 17 00:00:00 2001 From: DeepMind Team Date: Mon, 11 Nov 2024 15:27:55 -0800 Subject: [PATCH] Increase buffer limit PiperOrigin-RevId: 695502169 Change-Id: I9cfe64d878c450ef2bf18133ccf719f8223ced93 GitOrigin-RevId: bffc2eb5ab822723afc58f703add73271508dce8 --- xmanager/xm_local/execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmanager/xm_local/execution.py b/xmanager/xm_local/execution.py index 1a214e9..f707ba0 100644 --- a/xmanager/xm_local/execution.py +++ b/xmanager/xm_local/execution.py @@ -133,7 +133,7 @@ async def _launch_local_binary( stderr=asyncio.subprocess.STDOUT if job.executor.experimental_stream_output else None, - limit=1024 * 512, # 512 KiB + limit=1024 * 1024, # 1 MB ) return handles.BinaryHandle( name=job.name,