Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pbsutils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
toolbox
pbsutils
Commits
19c00ad8
Commit
19c00ad8
authored
8 years ago
by
David Verelst
Browse files
Options
Downloads
Patches
Plain Diff
launch.py: fix bug from previous commit, write cronjob when in crontab mode
parent
2d09626a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
launch.py
+5
-5
5 additions, 5 deletions
launch.py
with
5 additions
and
5 deletions
launch.py
+
5
−
5
View file @
19c00ad8
...
...
@@ -643,7 +643,7 @@ class Scheduler:
print
self
.
path_pbs_files
print
"
I have no choice but to abort the launch sequence.
"
print
""
return
return
'
nothing
'
time0
=
0.0
while
True
:
...
...
@@ -705,7 +705,7 @@ class Scheduler:
ii
+=
1
elif
crontab_mode
:
save_pbsflist
(
self
.
f_pbsflist
,
pbsflist
[
ii
:])
return
return
'
crontab
'
else
:
# wait a bit before trying to launch a job again
if
self
.
debug
:
...
...
@@ -723,7 +723,7 @@ class Scheduler:
print
'
All jobs have been launched, stopping the scheduler.
'
if
crontab_mode
:
remove_crontab
()
return
return
'
done
'
def
launch_deps
(
self
):
"""
Launch
...
...
@@ -994,8 +994,8 @@ if __name__ == '__main__':
else
:
ss
.
write_config
()
ss
.
init_state_log
()
ss
(
depend
=
options
.
depend
,
crontab_mode
=
options
.
crontab
)
status
=
ss
(
depend
=
options
.
depend
,
crontab_mode
=
options
.
crontab
)
# start crontab job after first round of launching to prevent it from
# running more than once
if
options
.
crontab
:
if
options
.
crontab
and
status
==
'
crontab
'
:
write_crontab
(
every_min
=
options
.
every_min
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment