Add comment explaining JSON buffer accumulation logic

This commit is contained in:
Lina Tawfik 2025-06-30 23:00:54 -07:00
parent 1791031d20
commit 8233533148
No known key found for this signature in database

View file

@ -199,6 +199,7 @@ class SubprocessCLITransport(Transport):
if not json_line:
continue
# Keep accumulating partial JSON until we can parse it
json_buffer += json_line
if len(json_buffer) > _MAX_BUFFER_SIZE: