Use endpoint_type with session client

if endpoint_type is provided, map it to interface for
SessionClient as this endpoint_type is ignored.

Change-Id: If5bd96578e5bc4389b9eee6e53c598f6ffaf0d8d
Closes-Buf: #1665858
This commit is contained in:
rabi 2017-02-18 11:44:59 +05:30
parent 07ea7d95b8
commit b1c819f7d9
1 changed files with 5 additions and 1 deletions

View File

@ -349,9 +349,13 @@ def _construct_http_client(endpoint=None, username=None, password=None,
if session:
if 'endpoint_override' not in kwargs and endpoint:
kwargs['endpoint_override'] = endpoint
elif 'service_type' not in kwargs:
if 'service_type' not in kwargs:
kwargs['service_type'] = 'orchestration'
if 'interface' not in kwargs and endpoint_type:
kwargs['interface'] = endpoint_type
return SessionClient(session, auth=auth, **kwargs)
else:
return HTTPClient(endpoint=endpoint, username=username,