We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes to the final cycle point don't get applied by cylc reload if the suite was run using cylc restart.
final cycle point
cylc reload
cylc restart
[scheduling] initial cycle point = 2000 final cycle point = 2010 [[dependencies]] [[[P1Y]]] graph = foo[-P1Y] => foo
Normally changes to the final cycle point get applied by reload:
$ cylc run suite # running to stop at 2010 $ sed -i 's/2010/2020/' suite.rc $ cylc reload suite # running to stop at 2020
However, if the suite was restarted rather than cold started nothing happens:
$ cylc restart suite # running to stop at 2020 $ sed -i 's/2020/2030/' suite.rc $ cylc reload suite # running to stop at 2020
The text was updated successfully, but these errors were encountered:
Most likely overridden by the stored original.
Sorry, something went wrong.
See also #2799 which may supersede this.
matthewrmshin
Successfully merging a pull request may close this issue.
Changes to the
final cycle point
don't get applied bycylc reload
if the suite was run usingcylc restart
.Example
Normally changes to the final cycle point get applied by reload:
However, if the suite was restarted rather than cold started nothing happens:
The text was updated successfully, but these errors were encountered: