소스 검색

Merge pull request #6288 from AttilaVamos/HPCC-11992-fix

HPCC-11992 Regression Test Engine crashed in Overnight Build

Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
Gavin Halliday 11 년 전
부모
커밋
3094efeb33
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      testing/regress/hpcc/util/ecl/file.py

+ 4 - 1
testing/regress/hpcc/util/ecl/file.py

@@ -59,8 +59,11 @@ class ECLFile:
         self.jobname = self.basename
         self.diff = ''
         self.abortReason =''
+
         #If there is a --publish CL parameter then force publish this ECL file
-        self.forcePublish=args.publish
+        self.forcePublish=False
+        if 'publish' in args:
+            self.forcePublish=args.publish
 
         self.optX =[]
         self.optXHash={}