Skip to content
New issue

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

Test the simulation mode code. #5712

Merged
merged 7 commits into from
Oct 26, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions cylc/flow/task_job_mgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1002,14 +1002,7 @@ def _simulation_submit_task_jobs(self, itasks, workflow):
itask.submit_num += 1
self._set_retry_timers(itask)

# We largely want a clean "platform" and not localhost,
# but we need to get the existing submission retry delays
# to stop _set_retry_delays missing it on retry.
itask.platform = {
'name': 'SIMULATION',
'submission retry delays':
itask.platform['submission retry delays']
}
itask.platform = {'name': 'SIMULATION'}
oliver-sanders marked this conversation as resolved.
Show resolved Hide resolved
itask.summary['job_runner_name'] = 'SIMULATION'
itask.summary[self.KEY_EXECUTE_TIME_LIMIT] = (
itask.tdef.rtconfig['simulation']['simulated run length']
wxtim marked this conversation as resolved.
Show resolved Hide resolved
Expand Down