Method: PBS::Batch#release_job
- Defined in:
- lib/pbs/batch.rb
#release_job(id, type: :u) ⇒ void
This method returns an undefined value.
Release a specified job that is on hold Possible hold types:
:u => Available to the owner of the job, the batch operator and the batch administrator
:o => Available to the batch operator and the batch administrator
:s => Available to the batch administrator
282 283 284 285 286 |
# File 'lib/pbs/batch.rb', line 282 def release_job(id, type: :u) connect do |cid| Torque.pbs_rlsjob cid, id.to_s, type.to_s, nil end end |