Skip to content

Commit

Permalink
It's ReadTimeout, not ReadTimeoutError
Browse files Browse the repository at this point in the history
  • Loading branch information
twangboy committed Oct 26, 2022
1 parent a4857c4 commit bad65ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cicd/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ def process_each(softwares):
TEST_STATUS = False
TEST_FAILURES.append(failure)
count_status["failed"] += 1
except requests.exceptions.ReadTimeoutError:
except requests.exceptions.ReadTimeout:
# npp.sls... maybe a network issue as well
failure = "PROBLEM HERE (Read Timeoue Error) : %s -- %s\n -- %s" % (s, v, version["installer"])
failure = "PROBLEM HERE (Read Timeout) : %s -- %s\n -- %s" % (s, v, version["installer"])
print(failure)
TEST_STATUS = False
TEST_FAILURES.append(failure)
Expand Down

0 comments on commit bad65ad

Please sign in to comment.