Merge "Set X-Region-Name in header when using SessionClient"

This commit is contained in:
Zuul 2018-12-19 03:34:09 +00:00 committed by Gerrit Code Review
commit 9084feb640
1 changed files with 4 additions and 0 deletions

View File

@ -358,6 +358,10 @@ def _construct_http_client(endpoint=None, username=None, password=None,
if 'interface' not in kwargs and endpoint_type:
kwargs['interface'] = endpoint_type
if 'region_name' in kwargs:
kwargs['additional_headers'] = {
'X-Region-Name': kwargs['region_name']}
return SessionClient(session, auth=auth, **kwargs)
else:
return HTTPClient(endpoint=endpoint, username=username,