Skip to content

Commit

Permalink
revert to verify=True for both magpis & FIRST catalogs (they now have
Browse files Browse the repository at this point in the history
valid certificates; they didn't when we put in the workaroud)
  • Loading branch information
keflavich committed Mar 29, 2022
1 parent 60db44d commit afe9bd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion astroquery/image_cutouts/first/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def get_images_async(self, coordinates, image_size=1 * u.arcmin,
if get_query_payload:
return request_payload
response = self._request("POST", url=self.URL, data=request_payload,
timeout=self.TIMEOUT, verify=False)
timeout=self.TIMEOUT)
return response


Expand Down
2 changes: 1 addition & 1 deletion astroquery/magpis/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def get_images_async(self, coordinates, image_size=1 * u.arcmin,
if get_query_payload:
return request_payload
response = self._request("POST", url=self.URL, data=request_payload,
timeout=self.TIMEOUT, verify=False)
timeout=self.TIMEOUT)
return response

def list_surveys(self):
Expand Down

0 comments on commit afe9bd3

Please sign in to comment.