Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
zoe
main
Commits
67c88510
Commit
67c88510
authored
Oct 12, 2017
by
Daniele Venzano
Browse files
Fix missing argument
parent
38505bf2
Pipeline
#4595
passed with stages
in 2 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
zoe_master/preprocessing.py
View file @
67c88510
...
...
@@ -90,7 +90,7 @@ def restart_resubmit_scheduler(state: SQLManager, scheduler: ZoeBaseScheduler):
"""Restart work after a restart of the process."""
submitted_execs
=
state
.
execution_list
(
status
=
Execution
.
SUBMIT_STATUS
)
for
e
in
submitted_execs
:
execution_submit
(
state
,
scheduler
)
execution_submit
(
state
,
scheduler
,
e
)
sched_execs
=
state
.
execution_list
(
status
=
Execution
.
SCHEDULED_STATUS
)
for
e
in
sched_execs
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment