-
Notifications
You must be signed in to change notification settings - Fork 536
Make sure int keys are handled by redis integration #3130
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
Labels
Comments
This issue has even more coverage than just int keys. It fails for any SCAN call in v2.4.0. import redis
import sentry_sdk
sentry_sdk.init(dsn=...)
client = redis.Redis()
cursor, keys = client.scan() Will raise
Most recent working version: v2.3.1. |
Fix out now in 2.5.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In this PR:
https://github.com/getsentry/sentry-python/pull/3073/files#diff-79a3788011179b24960642acf26b7cd5a7daaef510906fb683364309338546fcR47
there is probably a string.join() that lead to this error:
https://sentry.sentry.io/issues/5448730468/?project=1&query=release%3Abackend%40a13563880494efef0811369c3265d546508f2703&referrer=release-issue-stream
Make sure that
_get_safe_command
and_get_safe_key
can handle integers.The text was updated successfully, but these errors were encountered: