Skip to content

Commit

Permalink
Merge pull request #611 from htcondor/HTCONDOR-2563-batch-queue
Browse files Browse the repository at this point in the history
HTCONDOR-2563 batch-queue
  • Loading branch information
JaimeFrey authored Jul 30, 2024
2 parents 158bbf3 + 9581d6e commit 1b6214a
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions config/01-ce-router-defaults.conf
Original file line number Diff line number Diff line change
Expand Up @@ -250,17 +250,16 @@ JOB_ROUTER_TRANSFORM_Memory @=jrt


JOB_ROUTER_TRANSFORM_Queue @=jrt
# Set the remote batch queue to one of the following, in order:
# 1. 'batch_queue' from the source job
# 2. 'queue' from the source job
# 3. 'default_queue' from the route
# 4. Empty string
if defined MY.batch_queue
EVALSET remote_queue MY.batch_queue
elif defined MY.queue
EVALSET remote_queue MY.queue
# If BatchQueue isn't already set, then set it from one of the
# following, in order:
# 1. 'queue' from the source job
# 2. 'default_queue' from the route
# 3. Empty string
REQUIREMENTS BatchQueue is undefined
if defined MY.queue
EVALSET BatchQueue MY.queue
else
EVALSET remote_queue "$(default_queue)"
EVALSET BatchQueue "$(default_queue)"
endif
@jrt

Expand Down

0 comments on commit 1b6214a

Please sign in to comment.