Fixed abdundant parameter
Change-Id: I54778c982d7958107564119dc4f399bed502cbc3
diff --git a/src/com/mirantis/mk/openstack.groovy b/src/com/mirantis/mk/openstack.groovy
index 05e8646..b87dd4f 100644
--- a/src/com/mirantis/mk/openstack.groovy
+++ b/src/com/mirantis/mk/openstack.groovy
@@ -102,7 +102,7 @@
def python = new com.mirantis.mk.python()
cmd = "keystone token-get"
outputTable = runOpenstackCommand(cmd, client, path)
- output = python.parseTextTable(outputTable, 'item', 'prettytable', 'openstack', path)
+ output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
return output
}
@@ -150,7 +150,7 @@
dir("${env.WORKSPACE}/template/template") {
outputTable = runOpenstackCommand(cmd, client, path)
}
- output = python.parseTextTable(outputTable, 'item', 'prettytable', 'openstack', path)
+ output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
i = 1
while (true) {
@@ -194,7 +194,7 @@
def python = new com.mirantis.mk.python()
cmd = "heat stack-show ${name}"
outputTable = runOpenstackCommand(cmd, env, path)
- output = python.parseTextTable(outputTable, 'item', 'prettytable', 'openstack', path)
+ output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
return output
}
@@ -223,7 +223,7 @@
def python = new com.mirantis.mk.python()
cmd = "heat resource-list ${name}"
outputTable = runOpenstackCommand(cmd, env, path)
- output = python.parseTextTable(outputTable, 'list', 'prettytable', 'openstack', path)
+ output = python.parseTextTable(outputTable, 'list', 'prettytable', path)
return output
}
@@ -238,7 +238,7 @@
def python = new com.mirantis.mk.python()
cmd = "heat resource-show ${name} ${resource}"
outputTable = runOpenstackCommand(cmd, env, path)
- output = python.parseTextTable(outputTable, 'item', 'prettytable', 'openstack', path)
+ output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
return output
}
@@ -253,7 +253,7 @@
def python = new com.mirantis.mk.python()
cmd = "heat stack-update ${name}"
outputTable = runOpenstackCommand(cmd, env, path)
- output = python.parseTextTable(outputTable, 'item', 'prettytable', 'openstack', path)
+ output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
return output
}