Skip to content

Commit

Permalink
enable the queue option in RemoteJobConfig in Xenon
Browse files Browse the repository at this point in the history
  • Loading branch information
jhidding committed Nov 29, 2016
1 parent d3de84e commit 454f3ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion noodles/run/xenon/dynamic_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def xenon_interactive_worker(XeS: XenonScheduler, job_config):
Job configuration. Specifies the command to be run remotely.
"""
cmd = job_config.command_line()
J = XeS.submit(cmd, interactive=True)
queue = job_config.queue
J = XeS.submit(cmd, interactive=True, queue=queue)

def read_stderr():
jpype.attachThreadToJVM()
Expand Down

0 comments on commit 454f3ca

Please sign in to comment.