ASM #611 fix to MHS issues in DR_17297
Change-Id: Ie32edc0bac5458e3d356a0b6b3deea0f8d520cb7 Former-commit-id:c5e6daa943
[formerlyd1aa160aa7
[formerly fc06896ae4d9adf0973522313f5e65df6ac67fa4]] Former-commit-id:d1aa160aa7
Former-commit-id:fa2cdbfac1
This commit is contained in:
parent
61c177c7b2
commit
46926b679d
1 changed files with 1 additions and 1 deletions
|
@ -491,7 +491,7 @@ class IrtAccess():
|
|||
self.logEvent("Transmit: ", cmd)
|
||||
import siteConfig
|
||||
from subprocess import Popen,PIPE
|
||||
output,err = Popen(cmd.split(" "), stdout=PIPE,stderr=PIPE).communicate()
|
||||
output,err = Popen(cmd, shell=True, stdout=PIPE,stderr=PIPE).communicate()
|
||||
if output.find(siteConfig.GFESUITE_MHSID+"-") == -1:
|
||||
alertMsg = "ISC Send failed transmission to : "+",".join(addresses)+" --> "+output+" "+err
|
||||
self.logProblem(alertMsg)
|
||||
|
|
Loading…
Add table
Reference in a new issue