Improve error handling for cs tests.
This commit is contained in:
parent
9fc6f85473
commit
a94156227d
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue