From 26fcda50e759a90fcf575c0ce159d2ad199f83c6 Mon Sep 17 00:00:00 2001 From: Ian Rodney Date: Fri, 10 Jul 2020 18:09:01 -0700 Subject: [PATCH] Pass run args to DockerCommandRunner (#9411) --- python/ray/autoscaler/command_runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ray/autoscaler/command_runner.py b/python/ray/autoscaler/command_runner.py index 09417a1c1..6a10654ea 100644 --- a/python/ray/autoscaler/command_runner.py +++ b/python/ray/autoscaler/command_runner.py @@ -396,8 +396,8 @@ class DockerCommandRunner(SSHCommandRunner): cmd, timeout=timeout, exit_on_fail=exit_on_fail, - port_forward=None, - with_output=False, + port_forward=port_forward, + with_output=with_output, ssh_options_override=ssh_options_override) def run_rsync_up(self, source, target):