Commit 9c978ebf authored by Robert Schmidt's avatar Robert Schmidt

Merge remote-tracking branch 'origin/fix-t1-offload' into integration_2022_wk49

parents af645839 6f9fdf5d
......@@ -3669,7 +3669,7 @@ class OaiCiTest():
def LogCollectPing(self,EPC):
# Some pipelines are using "none" IP / Credentials
# In that case, just forget about it
if self.IPAddress == 'none':
if EPC.IPAddress == 'none':
sys.exit(0)
SSH = sshconnection.SSHConnection()
SSH.open(EPC.IPAddress, EPC.UserName, EPC.Password)
......@@ -3683,7 +3683,7 @@ class OaiCiTest():
def LogCollectIperf(self,EPC):
# Some pipelines are using "none" IP / Credentials
# In that case, just forget about it
if self.IPAddress == 'none':
if EPC.IPAddress == 'none':
sys.exit(0)
SSH = sshconnection.SSHConnection()
SSH.open(EPC.IPAddress, EPC.UserName, EPC.Password)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment