From a7b94cc0c22a10dc185545da71e02b8163efd080 Mon Sep 17 00:00:00 2001 From: Jorrit Schaap <schaap@astron.nl> Date: Thu, 30 Jun 2016 08:02:20 +0000 Subject: [PATCH] Task #8598: applied some patches from production --- LTA/LTAIngest/ingestpipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LTA/LTAIngest/ingestpipeline.py b/LTA/LTAIngest/ingestpipeline.py index df8ea0b528e..dc6217ef01a 100755 --- a/LTA/LTAIngest/ingestpipeline.py +++ b/LTA/LTAIngest/ingestpipeline.py @@ -195,7 +195,7 @@ class IngestPipeline(): ## SecondaryUri handling not implemented self.logger.debug(cmd) start = time.time() - p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) logs = p.communicate() elapsed = time.time() - start self.logger.debug("File transfer for %s took %d sec" % (self.JobId, elapsed)) -- GitLab