Skip to content

Commit

Permalink
remove verify=False
Browse files Browse the repository at this point in the history
  • Loading branch information
claire-peters committed Nov 30, 2023
1 parent eeb0d53 commit 1bd03e3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions coldfront/plugins/fasrc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,7 @@ def __init__(self, volumes=None):
self.volumes = volumes

def post_query(self, query):
resp = requests.post(
self.url, headers=self.headers, data=json.dumps(query), verify=False
)
resp = requests.post(self.url, headers=self.headers, data=json.dumps(query))
return json.loads(resp.text)

def format_query_results(self, resp_json):
Expand Down

0 comments on commit 1bd03e3

Please sign in to comment.