From fecb026c859ee1d00c7d1d5a14be3033f07521c5 Mon Sep 17 00:00:00 2001 From: ghanshyam Date: Fri, 27 Jan 2017 02:42:47 +0000 Subject: [PATCH] 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 --- tempest/clients.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tempest/clients.py b/tempest/clients.py index 18116f35e1..cdd6925bc8 100644 --- a/tempest/clients.py +++ b/tempest/clients.py @@ -31,14 +31,6 @@ class Manager(clients.ServiceClients): 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.