Commit a80c17cc authored by Robert Schmidt's avatar Robert Schmidt

CI: Remove useless parameter

parent 5f1219bc
......@@ -240,7 +240,7 @@ class Cluster:
def _undeploy_pod(self, filename):
self.cmd.run(f'oc delete -f {filename}')
def PullClusterImage(self, HTML, RAN):
def PullClusterImage(self, HTML):
if self.testSvrId == None: self.testSvrId = self.eNBIPAddress
if self.imageToPull == '':
HELP.GenericHelp(CONST.Version)
......
......@@ -410,7 +410,7 @@ def ExecuteActionWithParam(action):
string_field = test.findtext('test_svr_id')
if (string_field is not None):
CLUSTER.testSvrId = string_field
success = CLUSTER.PullClusterImage(HTML, RAN)
success = CLUSTER.PullClusterImage(HTML)
else:
logging.warning(f"unknown action {action}, skip step")
......
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