Skip to content

Commit

Permalink
Merge pull request #15 from feedly/verify-ssl
Browse files Browse the repository at this point in the history
enable cert verification
  • Loading branch information
kireet authored Sep 20, 2019
2 parents ae5c188 + f7d0cc6 commit ada57f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feedly/api_client/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def do_api_request(self, relative_url:str, method:str=None, data:Dict=None,
resp = None
conn_error = None
try:
resp = self.session.request(method, full_url, headers=headers, timeout=timeout, json=data, verify=False)
resp = self.session.request(method, full_url, headers=headers, timeout=timeout, json=data)
except OSError as e:
conn_error = e

Expand Down

0 comments on commit ada57f4

Please sign in to comment.