Skip to content

Commit

Permalink
Skip cert verification on POST requests as well
Browse files Browse the repository at this point in the history
  • Loading branch information
scoop authored and 5ila5 committed Jun 15, 2024
1 parent 10cde4c commit c5d5066
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def fetch(self):
r = session.post(
SERVLET,
data=args,
verify=False,
)
r.raise_for_status()

Expand All @@ -106,6 +107,7 @@ def fetch(self):
r = session.post(
SERVLET,
data=args,
verify=False,
)
r.raise_for_status()

Expand All @@ -114,6 +116,7 @@ def fetch(self):
r = session.post(
SERVLET,
data=args,
verify=False,
)
r.raise_for_status()

Expand Down

0 comments on commit c5d5066

Please sign in to comment.