Merge remote-tracking branch 'tsimonq2/tsimonq2/rest-policy-urlerror'

master
Paride Legovini 2 weeks ago
commit 3e18826a38

@ -4,7 +4,7 @@ import urllib.request
import urllib.parse
from collections import defaultdict
from urllib.error import HTTPError
from urllib.error import HTTPError, URLError
LAUNCHPAD_URL = "https://api.launchpad.net/1.0/"
@ -39,7 +39,7 @@ class Rest:
% (url, 5 - retry - 1)
)
exc = e
except HTTPError as e:
except (HTTPError, URLError) as e:
if e.code not in (503, 502):
raise
self.logger.info(

Loading…
Cancel
Save