mirror of
https://github.com/wassname/ray.git
synced 2026-08-13 12:30:18 +08:00
Fixing Lint after flake upgrade (#1162)
* Fixing Lint after flake upgrade * more lint fixes
This commit is contained in:
committed by
Robert Nishihara
parent
6da7761d5d
commit
797f4fcbf3
@@ -224,13 +224,13 @@ class DockerRunner(object):
|
||||
|
||||
try:
|
||||
self._stop_node(self.head_container_id)
|
||||
except:
|
||||
except Exception:
|
||||
success = False
|
||||
|
||||
for container_id in self.worker_container_ids:
|
||||
try:
|
||||
self._stop_node(container_id)
|
||||
except:
|
||||
except Exception:
|
||||
success = False
|
||||
|
||||
return success
|
||||
|
||||
Reference in New Issue
Block a user