mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-01 15:37:32 +08:00
e58034b987
basic sample job config (defining a single default handler is no longer needed). Fixes #5976.
11 lines
403 B
XML
11 lines
403 B
XML
<?xml version="1.0"?>
|
|
<!-- A sample job config that explicitly configures job running the way it is configured by default (if there is no explicit config). -->
|
|
<job_conf>
|
|
<plugins>
|
|
<plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="4"/>
|
|
</plugins>
|
|
<destinations>
|
|
<destination id="local" runner="local"/>
|
|
</destinations>
|
|
</job_conf>
|