-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(exception-handling): Catch errors when requesting datafile #285
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch. Can we add some unit tests to make sure that we handle exceptions other than HTTPError?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Tests had passed: https://travis-ci.org/github/optimizely/python-sdk/builds/706967427. Going to force merge. |
Go for it! Travis has been misbehaving lately... |
Summary
We were not catching all exceptions when requesting the datafile. The
HTTPError
class is only a single class of errors and we were not capturing all the other errors like timeout issues, proxy issues, etc.The class of exceptions can be seen here: https://requests.readthedocs.io/en/master/_modules/requests/exceptions
Updating to catch
RequestException
. It is also something we were already doing correctly in event dispatching: https://github.com/optimizely/python-sdk/blob/master/optimizely/event_dispatcher.py#L42Test plan