summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-06-23 16:15:27 +0000
committerGerrit Code Review <review@openstack.org>2015-06-23 16:15:27 +0000
commit8f67d9f38ba3ef253c2e157767d2dcbe678cab10 (patch)
treed9c1e39cf68312fe4547162778d875447b72cf6b
parent061a2efc71ccce9024f86517edccdb4c82d416bc (diff)
parent9aeafe9f5e0aa8e16638325efd86ffe96ddfa128 (diff)
downloadtempest-lib-8f67d9f38ba3ef253c2e157767d2dcbe678cab10.tar.gz
Merge "Revert "Adding support for neutron-debug CLI.""0.6.0
-rw-r--r--tempest_lib/cli/base.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/tempest_lib/cli/base.py b/tempest_lib/cli/base.py
index 5717e07..ec966ca 100644
--- a/tempest_lib/cli/base.py
+++ b/tempest_lib/cli/base.py
@@ -285,29 +285,6 @@ class CLIClient(object):
return self.cmd_with_auth(
'neutron', action, flags, params, fail_ok, merge_stderr)
- def neutron_debug(self, action, flags='', params='', fail_ok=False,
- endpoint_type='publicURL', merge_stderr=False):
- """Executes neutron-debug command for the given action.
-
- :param action: the cli command to run using neutron
- :type action: string
- :param flags: any optional cli flags to use
- :type flags: string
- :param params: any optional positional args to use
- :type params: string
- :param fail_ok: if True an exception is not raised when the
- cli return code is non-zero
- :type fail_ok: boolean
- :param endpoint_type: the type of endpoint for the service
- :type endpoint_type: string
- :param merge_stderr: if True the stderr buffer is merged into stdout
- :type merge_stderr: boolean
- """
-
- return execute(
- 'neutron-debug', action, flags, params, fail_ok, merge_stderr,
- self.cli_dir)
-
def sahara(self, action, flags='', params='',
fail_ok=False, endpoint_type='publicURL', merge_stderr=True):
"""Executes sahara command for the given action.