diff --git a/codar/savanna/pipeline.py b/codar/savanna/pipeline.py index e401118..082f486 100644 --- a/codar/savanna/pipeline.py +++ b/codar/savanna/pipeline.py @@ -469,13 +469,13 @@ def _post_process_thread(self): args = [self.post_process_script] + self.post_process_args # TODO: make sure this doesn't conflict with other names name = 'post-process' - stdout_path = self._get_path(self.working_dir, + stdout_path = get_path(self.working_dir, STDOUT_NAME + "." + name, None) - stderr_path = self._get_path(self.working_dir, + stderr_path = get_path(self.working_dir, STDERR_NAME + "." + name, None) - return_path = self._get_path(self.working_dir, + return_path = get_path(self.working_dir, RETURN_NAME + "." + name, None) - walltime_path = self._get_path(self.working_dir, + walltime_path = get_path(self.working_dir, WALLTIME_NAME + "." + name, None) outf = errf = None