diff options
author | kong wei <kong.wei2@zte.com.cn> | 2017-03-05 09:09:55 +0000 |
---|---|---|
committer | kong wei <kong.wei2@zte.com.cn> | 2017-03-05 09:14:29 +0000 |
commit | a0d08d9962ddae946f83f81659d6bad2446db2a7 (patch) | |
tree | 33c388007f3ac512d777a6aead88398de8212d4a /client/escalatorclient/v1 | |
parent | 74c631c6dae08d463f0d4c3953a1addcb187d090 (diff) |
The escalator's port is 19393.
The command 'escalator version' means get the version of escalator.
So it should use the 'http://127.0.0.1:19393' to get this infomation.'
Change-Id: Ib7b5254146201cdf178fbf50169822db9ff0b9ef
Signed-off-by: Kong Wei<kong.wei2@zte.com.cn>
Diffstat (limited to 'client/escalatorclient/v1')
-rw-r--r-- | client/escalatorclient/v1/versions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/escalatorclient/v1/versions.py b/client/escalatorclient/v1/versions.py index 143c4c6..811e577 100644 --- a/client/escalatorclient/v1/versions.py +++ b/client/escalatorclient/v1/versions.py @@ -211,6 +211,7 @@ class VersionManager(base.ManagerWithFind): TODO(bcwaldon): document accepted params """ + version_client = HTTPClient("http://127.0.0.1:19393") fields = {} for field in kwargs: if field in VERSION_PARAMS: @@ -221,5 +222,5 @@ class VersionManager(base.ManagerWithFind): url = '/v1/versions' hdrs = self._version_meta_to_headers(fields) - resp, body = self.client.post(url, headers=None, data=hdrs) + resp, body = version_client.post(url, headers=None, data=hdrs) return Version(self, body) |