diff --git a/heat/common/urlfetch.py b/heat/common/urlfetch.py index 1ef22b40c4..54cc900279 100644 --- a/heat/common/urlfetch.py +++ b/heat/common/urlfetch.py @@ -13,6 +13,8 @@ """Utility for fetching a resource (e.g. a template) from a URL.""" +import socket + from oslo_config import cfg from oslo_log import log as logging import requests @@ -74,6 +76,6 @@ def get(url, allowed_schemes=('http', 'https')): cfg.CONF.max_template_size) return result - except exceptions.RequestException as ex: + except (exceptions.RequestException, socket.timeout) as ex: LOG.info('Failed to retrieve template: %s', ex) raise URLFetchError(_('Failed to retrieve template from %s') % url)