fix(sdk): remove redundant newline character in local `DockerRunner` logs (#10354)
This commit is contained in:
parent
89d4234a5b
commit
86b7e23985
|
|
@ -95,5 +95,7 @@ def run_docker_container(
|
|||
volumes=volumes,
|
||||
)
|
||||
for line in container.logs(stream=True):
|
||||
print(line.decode())
|
||||
# the inner logs should already have trailing \n
|
||||
# we do not need to add another
|
||||
print(line.decode(), end='')
|
||||
return container.wait()['StatusCode']
|
||||
|
|
|
|||
Loading…
Reference in New Issue