mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
[hotfix] Fix master's linting (#5049)
The linting in CI on master always fail.
This commit is contained in:
parent
a1156754e9
commit
d9768c1cd2
1 changed files with 3 additions and 1 deletions
|
@ -670,7 +670,9 @@ class StandardAutoscaler(object):
|
|||
nodes = self.workers()
|
||||
if nodes:
|
||||
self.provider.terminate_nodes(nodes)
|
||||
logger.error("StandardAutoscaler: terminated {} node(s)".format(len(nodes)))
|
||||
logger.error(
|
||||
"StandardAutoscaler: terminated {} node(s)".format(
|
||||
len(nodes)))
|
||||
except Exception:
|
||||
traceback.print_exc()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue