Improve error handling for cs tests.

This commit is contained in:
Matt Clay
2017-07-06 16:56:20 -07:00
parent 9fc6f85473
commit a94156227d

View File

@@ -21,6 +21,7 @@ from lib.util import (
from lib.http import (
HttpClient,
HttpError,
urlparse,
)
@@ -242,7 +243,10 @@ class CsCloudProvider(CloudProvider):
response = client.get(endpoint)
if response.status_code == 200:
return response.json()
try:
return response.json()
except HttpError as ex:
display.error(ex)
time.sleep(30)