We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0451051 + 6f8dc74 commit 16c0e6cCopy full SHA for 16c0e6c
changes.d/6645.fix.md
@@ -0,0 +1 @@
1
+Fixed a typo in stop.py which caused a different exception to be raised than was desired
cylc/flow/scripts/stop.py
@@ -268,7 +268,7 @@ async def _run(
268
if int(options.max_polls) > 0 and not await spoller.poll():
269
# (test to avoid the "nothing to do" warning for # --max-polls=0)
270
raise CylcError(
271
- f'Workflow did not shut down after {options.max_poll} polls'
+ f'Workflow did not shut down after {options.max_polls} polls'
272
)
273
return ret
274
0 commit comments