From: daix Date: Tue, 27 Mar 2012 14:40:11 +0000 (+0000) Subject: Special parameters for VISHNU removed X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ab646967e9a7383e9219c64bc7ab743b8fea3edf;p=modules%2Fkernel.git Special parameters for VISHNU removed --- diff --git a/src/Launcher/Launcher_Job.cxx b/src/Launcher/Launcher_Job.cxx index aee3751d0..2841a4afd 100644 --- a/src/Launcher/Launcher_Job.cxx +++ b/src/Launcher/Launcher_Job.cxx @@ -542,18 +542,6 @@ Launcher::Job::common_job_params() std::map::iterator it = _specific_parameters.find("LoalLevelerJobType"); if (it != _specific_parameters.end()) params["LL_JOBTYPE"] = it->second; - it = _specific_parameters.find("VishnuPassword"); - if (it != _specific_parameters.end()) - params["VISHNU_PASSWORD"] = it->second; - it = _specific_parameters.find("VishnuHostname"); - if (it != _specific_parameters.end()) - params["VISHNU_HOST_NAME"] = it->second; - it = _specific_parameters.find("VishnuHostLogin"); - if (it != _specific_parameters.end()) - params["VISHNU_HOST_LOGIN"] = it->second; - it = _specific_parameters.find("VishnuHostWorkdir"); - if (it != _specific_parameters.end()) - params["VISHNU_HOST_WORKDIR"] = it->second; return params; }