From: barate Date: Fri, 19 Apr 2013 16:04:46 +0000 (+0000) Subject: Fix regression in Launcher with ForEach-like batch jobs X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6c2093a2b2beb12252088df54d54ceddd99c770c;p=modules%2Fyacs.git Fix regression in Launcher with ForEach-like batch jobs --- diff --git a/src/Launcher/Launcher_Job_SALOME.cxx b/src/Launcher/Launcher_Job_SALOME.cxx index fe38e09b6..b5a2a2a11 100644 --- a/src/Launcher/Launcher_Job_SALOME.cxx +++ b/src/Launcher/Launcher_Job_SALOME.cxx @@ -104,7 +104,7 @@ Launcher::Job_SALOME::buildSalomeScript(Batch::Parametre params) launch_script_stream << "echo ' mpi=\"" << _resource_definition.getMpiImplTypeStr() << "\"' >> $CATALOG_FILE" << std::endl; launch_script_stream << "echo ' nbOfNodes='\\\"$nbproc\\\" >> $CATALOG_FILE" << std::endl; launch_script_stream << "echo ' nbOfProcPerNode=\"1\"' >> $CATALOG_FILE" << std::endl; - launch_script_stream << "echo ' can_run_containers=\"true\"' >> $CATALOG_FILE" << std::endl; + launch_script_stream << "echo ' canRunContainers=\"true\"' >> $CATALOG_FILE" << std::endl; launch_script_stream << "echo '/>' >> $CATALOG_FILE" << std::endl; launch_script_stream << "done" << std::endl; launch_script_stream << "echo '' >> $CATALOG_FILE" << std::endl;