Skip to content

Commit 7bf8891

Browse files
committed
remove unnecessary tail output
Signed-off-by: oliver könig <okoenig@nvidia.com>
1 parent dec5676 commit 7bf8891

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nemo_run/core/execution/dgxcloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ def fetch_logs(
408408
while True:
409409
try:
410410
for line in iter(proc.stdout.readline, ""):
411-
if line:
411+
if line and not line.endswith(".log <==\n"):
412412
yield f"{line}"
413413
if proc.poll() is not None:
414414
break

0 commit comments

Comments
 (0)