mirror of
https://github.com/wassname/ray.git
synced 2026-07-01 05:41:51 +08:00
Switch cluster longevity tests to DLAMI, fix ray up verbosity (#5084)
* fix * add branch commit * comments * Update ci/long_running_tests/.gitignore Co-Authored-By: Robert Nishihara <robertnishihara@gmail.com>
This commit is contained in:
@@ -226,15 +226,13 @@ class NodeUpdater(object):
|
||||
|
||||
m = "{}: Initialization commands completed".format(self.node_id)
|
||||
with LogTimer("NodeUpdater: {}".format(m)):
|
||||
with open("/dev/null", "w") as redirect:
|
||||
for cmd in self.initialization_commands:
|
||||
self.ssh_cmd(cmd, redirect=redirect)
|
||||
for cmd in self.initialization_commands:
|
||||
self.ssh_cmd(cmd)
|
||||
|
||||
m = "{}: Setup commands completed".format(self.node_id)
|
||||
with LogTimer("NodeUpdater: {}".format(m)):
|
||||
with open("/dev/null", "w") as redirect:
|
||||
for cmd in self.setup_commands:
|
||||
self.ssh_cmd(cmd, redirect=redirect)
|
||||
for cmd in self.setup_commands:
|
||||
self.ssh_cmd(cmd)
|
||||
|
||||
def rsync_up(self, source, target, redirect=None, check_error=True):
|
||||
logger.info("NodeUpdater: "
|
||||
|
||||
Reference in New Issue
Block a user