Skip to content

Commit e7b6dba

Browse files
committed
Quick update to the error message on a 503 to reflect that they can happen on maintenance or when servers are overloaded.
1 parent 4607fa4 commit e7b6dba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

shotgun_api3/shotgun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1848,7 +1848,7 @@ def _parse_http_status(self, status):
18481848
if status[0] >= 300:
18491849
headers = "HTTP error from server"
18501850
if status[0] == 503:
1851-
errmsg = "Shotgun is currently down for maintenance. Please try again later."
1851+
errmsg = "Shotgun is currently down for maintenance or too busy to reply. Please try again later."
18521852
raise ProtocolError(self.config.server,
18531853
error_code,
18541854
errmsg,

0 commit comments

Comments
 (0)