Skip to content

Commit

Permalink
Remove verify from stop call, as it is not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHerve-Descours-Cabaud committed Jun 11, 2024
1 parent 729ff77 commit d54526f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instance/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def stop():
instance_name = os.environ["INSTANCE_NAME"]
backend_url = os.environ["BACKEND_URL"]
password = os.environ["PASSWORD"]
requests.post(f"https://{backend_url}/delete-room", data={"instance": instance_name, "password": password})
requests.post(f"https://{backend_url}/delete-room", data={"instance": instance_name, "password": password}, verify=False)
return "deleted"

if __name__ == "__main__":
Expand Down

0 comments on commit d54526f

Please sign in to comment.