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

Add a linux_systemd job adapter #743

Merged
merged 5 commits into from
Feb 21, 2022
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
13 changes: 9 additions & 4 deletions lib/ood_core/job/adapters/linux_systemd/launcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,15 @@ def export_env(script)

def script_timeout(script)
wall_time = script.wall_time.to_i
return site_timeout if wall_time == 0
return [wall_time, site_timeout].min unless site_timeout == 0

wall_time
if wall_time == 0
# this is the only way it can be 0
# so make it into infinify for systemd to never terminate
site_timeout == 0 ? 'infinity' : site_timeout
johrstrom marked this conversation as resolved.
Show resolved Hide resolved
elsif site_timeout != 0
[wall_time, site_timeout].min
else
wall_time
end
end

def script_arguments(script)
Expand Down