-
Notifications
You must be signed in to change notification settings - Fork 45
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
Unhandled exception in event consumer. Analytics events were not processed. #57
Comments
Thanks for reporting this + the details. I'm taking a look right now. Expect an update shortly. |
@kjwilcox do you mind emailing support@launchdarkly.com and we can follow up there? |
No problem, email sent. |
https://github.com/launchdarkly/python-client/releases/tag/3.0.1 contains this fix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When calling
launchdarkly_client.toggle()
, we often see an error log with the following traceback:The user object we are providing to
.toggle()
does not contain any non-json-serializable fields. Example:{'anonymous': True, 'key': 'SECRET', 'custom': {'client': 'sandbox', 'roles': (), 'superuser': False}}
We are currently using version 0.20.3, but this problem repros on 3.0.0. Running on Python 3.5.2 on Ubuntu 14.04.
Is there a way for us to opt-out of these failing analytics events? Or can the this client library be updated to fix this error?
The text was updated successfully, but these errors were encountered: