Skip to content

Commit

Permalink
🐞 fix:
Browse files Browse the repository at this point in the history
  • Loading branch information
DrinkLessMilkTea committed Jul 18, 2024
1 parent 2306d01 commit aa9a86b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WorkerNodePython/WorkerNode/ApiMessageProcessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def event_stream():

response = requests.post(self.apiURL,data=json.dumps(data),headers=headers,verify=False)

if response.status_code >= 200:
if response.status_code >= 400:
e = requests.exceptions.HTTPError()
e.response = response
raise e
Expand Down

0 comments on commit aa9a86b

Please sign in to comment.