-
Notifications
You must be signed in to change notification settings - Fork 678
Closed
Description
I noticed my downloader hung forever. I dug through the code and it looks like the timeout parameter isn't actually passed the request call.
pandas-datareader/pandas_datareader/base.py
Line 142 in 09ab475
response = self.session.get(url, params=params, headers=headers) |
Pretty sure the fix is just:
- response = self.session.get(url, params=params, headers=headers)
+ response = self.session.get(url, params=params, headers=headers, timeout=self.timeout)
Metadata
Metadata
Assignees
Labels
No labels