From 6623abe2681f754bffcf06fb13903a72df8ed10e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Marenco?= <remi.marenco@gmail.com> Date: Tue, 8 Sep 2015 16:42:22 +0100 Subject: [PATCH] Updated the job_conf_sample_remote_cluster.xml for the right default `destinations` id In the `job_conf_sample_remote_cluster.xml`, the default destinations attribute was set on `drmaa` instead of `local_cluster`. This was producing the following Exception: ``` Exception: Problem parsing the XML in file /Users/marenc01/Dev/galaxy/config/job_conf.xml, please correct the indicated portion of the file and restart Galaxy.<destinations> default attribute 'pulsar' does not match a defined id or tag in a child element ``` When launching Galaxy. --- docs/files/job_conf_sample_remote_cluster.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/files/job_conf_sample_remote_cluster.xml b/docs/files/job_conf_sample_remote_cluster.xml index 52c5a146..de0db42e 100644 --- a/docs/files/job_conf_sample_remote_cluster.xml +++ b/docs/files/job_conf_sample_remote_cluster.xml @@ -7,7 +7,7 @@ <handlers> <handler id="main"/> </handlers> - <destinations default="drmaa"> + <destinations default="local_cluster"> <destination id="local_cluster" runner="drmaa"> <param id="native_specification">-P littlenodes -R y -pe threads 4</param> </destination> -- GitLab