diff options
author | Carlos Goncalves <carlos.goncalves@neclab.eu> | 2017-07-26 10:36:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-26 10:36:34 +0000 |
commit | 9eb18cabdddda3a2e0bbd05076bc1786ebe6be8b (patch) | |
tree | 71d5b4e735e5f3a72d85f8db630baca479d439ca /tests/inspector.py | |
parent | 41fc677e7f6349d28ec938fe6ac9ff03e99894f1 (diff) | |
parent | 7e13330620e235e9611ed1b474bcfb33902797f5 (diff) |
Merge "Fix host status grep bug and Remove connection_pool argument"
Diffstat (limited to 'tests/inspector.py')
-rw-r--r-- | tests/inspector.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/inspector.py b/tests/inspector.py index d11da299..a61051f1 100644 --- a/tests/inspector.py +++ b/tests/inspector.py @@ -54,8 +54,7 @@ class DoctorInspectorSample(object): # Pool of novaclients for redundant usage for i in range(self.NUMBER_OF_CLIENTS): self.novaclients.append( - novaclient.Client(self.NOVA_API_VERSION, session=sess, - connection_pool=True)) + novaclient.Client(self.NOVA_API_VERSION, session=sess)) # Normally we use this client for non redundant API calls self.nova=self.novaclients[0] self.nova.servers.list(detailed=False) |