Skip to content

Commit 9391ca7

Browse files
committed
newline
Signed-off-by: oliver könig <okoenig@nvidia.com>
1 parent 9d156c8 commit 9391ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nemo_run/core/execution/dgxcloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def _stream_url_sync(self, url: str, headers: Dict[str, str], q: queue.Queue):
352352
try:
353353
with requests.get(url, stream=True, headers=headers, verify=False) as response:
354354
for line in response.iter_lines(decode_unicode=True):
355-
q.put(line)
355+
q.put(f"{line}\n")
356356
except Exception as e:
357357
logger.error(f"Error streaming URL {url}: {e}")
358358

0 commit comments

Comments
 (0)