summaryrefslogtreecommitdiff
path: root/tempest_lib/common/rest_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'tempest_lib/common/rest_client.py')
-rw-r--r--tempest_lib/common/rest_client.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tempest_lib/common/rest_client.py b/tempest_lib/common/rest_client.py
index 683efa5..c5353ad 100644
--- a/tempest_lib/common/rest_client.py
+++ b/tempest_lib/common/rest_client.py
@@ -39,6 +39,9 @@ class RestClient(object):
TYPE = "json"
+ # The version of the API this client implements
+ api_version = None
+
LOG = logging.getLogger(__name__)
def __init__(self, auth_provider, service, region,
@@ -54,8 +57,6 @@ class RestClient(object):
self.build_timeout = build_timeout
self.trace_requests = trace_requests
- # The version of the API this client implements
- self.api_version = None
self._skip_path = False
self.general_header_lc = set(('cache-control', 'connection',
'date', 'pragma', 'trailer',