Remove default_params_with_timeout_values variable
default_params_with_timeout_values was only supposed to
used under baremetal tests but it was kept because many plugins
were using the same.
Now all plugins have been fixed for this.
Last fix is merged - I8d010afe20db890636433a17193029a123a0a136
This commit removes default_params_with_timeout_values from tempest.
Change-Id: I9b7a9ca64c5ca0916b38c228a82e81850bfc1730
diff --git a/tempest/clients.py b/tempest/clients.py
index 18116f3..cdd6925 100644
--- a/tempest/clients.py
+++ b/tempest/clients.py
@@ -31,14 +31,6 @@
default_params = config.service_client_config()
- # TODO(jordanP): remove this once no Tempest plugin use that class
- # variable.
- default_params_with_timeout_values = {
- 'build_interval': CONF.compute.build_interval,
- 'build_timeout': CONF.compute.build_timeout
- }
- default_params_with_timeout_values.update(default_params)
-
def __init__(self, credentials, scope='project'):
"""Initialization of Manager class.