Fix the default service type as container

In HTTP client, the default service type was set to 'baremetal'.
This is obviously incorrect. It should be 'container'.

Change-Id: I0e950db6897dbc8e12a452c6d55b7ae57790ca1d
This commit is contained in:
Hongbin Lu 2017-08-08 18:16:55 +00:00
parent 7e23e33f40
commit 67910868de

View File

@ -411,7 +411,7 @@ def _construct_http_client(*args, **kwargs):
auth = kwargs.pop('auth', None)
if session:
service_type = kwargs.pop('service_type', 'baremetal')
service_type = kwargs.pop('service_type', 'container')
interface = kwargs.pop('endpoint_type', None)
region_name = kwargs.pop('region_name', None)
return SessionClient(session=session,