Skip to content
Snippets Groups Projects
Commit b379fbd5 authored by Alwin de Jong's avatar Alwin de Jong
Browse files

Task #3772:is_cobalt swich added

parent 8265efe3
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,6 @@ class pulsar_pipeline(control):
raise DataMapError("number of enabled input data products %s does not match the total number of output files %s" %
(in_len, out_len))
@mail_log_on_exception
def pipeline_logic(self):
"""
......@@ -125,9 +124,9 @@ class pulsar_pipeline(control):
# Get input/output-data products specifications.
self._get_io_product_specs()
job_dir = self.config.get("layout", "job_directory")
parset_dir = os.path.join(job_dir, "parsets")
mapfile_dir = os.path.join(job_dir, "mapfiles")
self.job_dir = self.config.get("layout", "job_directory")
parset_dir = os.path.join(self.job_dir, "parsets")
mapfile_dir = os.path.join(self.job_dir, "mapfiles")
# Create directories for temporary parset- and map files
create_directory(parset_dir)
......@@ -155,7 +154,7 @@ class pulsar_pipeline(control):
# Rebuilding sys.argv without the options given automatically by framework
# --auto = automatic run from framework
# -q = quiet mode, no user interaction
sys.argv = ['pulp.py', '--auto','-q']
sys.argv = ['pulp.py', '--auto','-q', '--cobalt']
# TODO: translate optional pipeline tuning parameters from the pipeline parset to existing commanf line options
#py_parset = self.parset.makeSubset(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment