Skip to content

Commit

Permalink
Increase buffer limit
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 695502169
Change-Id: I9cfe64d878c450ef2bf18133ccf719f8223ced93
GitOrigin-RevId: bffc2eb5ab822723afc58f703add73271508dce8
  • Loading branch information
DeepMind Team authored and alpiccioni committed Dec 4, 2024
1 parent 05e6bc6 commit 19a92ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmanager/xm_local/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 19a92ab

Please sign in to comment.