Merge "Don't determine local IPv6 support if force_ip4=True"

This commit is contained in:
Jenkins 2017-08-18 12:33:32 +00:00 committed by Gerrit Code Review
commit d1d45808e6

View File

@ -297,7 +297,8 @@ class OpenStackCloud(
self._legacy_clients = {}
self._raw_clients = {}
self._local_ipv6 = _utils.localhost_supports_ipv6()
self._local_ipv6 = (
_utils.localhost_supports_ipv6() if not self.force_ipv4 else False)
self.cloud_config = cloud_config