We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 731101f + 5e6cef3 commit 11451bdCopy full SHA for 11451bd
src/redfish/rest/v1.py
@@ -611,8 +611,11 @@ def get_root_object(self):
611
self.root = {}
612
self.root_resp = resp
613
return
614
+ if resp.status == 503:
615
+ raise ServerDownOrUnreachableError("Service is busy, " \
616
+ "return code: %d" % resp.status,response=resp)
617
if resp.status != 200:
- raise ServerDownOrUnreachableError("Server not reachable, " \
618
+ raise ServerDownOrUnreachableError("Service not able to provide the service root, " \
619
"return code: %d" % resp.status,response=resp)
620
621
content = resp.text
0 commit comments