-
Notifications
You must be signed in to change notification settings - Fork 32
🐛 Fixed Redis issue where keys ended up in the wrong deployment. #6368
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
🐛 Fixed Redis issue where keys ended up in the wrong deployment. #6368
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.
Did you check if there are other occurences of this?
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.
super!
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #6368 +/- ##
=========================================
+ Coverage 84.5% 88.7% +4.1%
=========================================
Files 10 1075 +1065
Lines 214 47411 +47197
Branches 25 356 +331
=========================================
+ Hits 181 42090 +41909
- Misses 23 5252 +5229
- Partials 10 69 +59
Flags with carried forward coverage won't be shown. Click here to find out more.
|
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.
thx! 🎉
|



What do these changes do?
After the upgrade of python
3.11enums work a bit differently.class X(int, Enum)andclass X(IntEnum)work differently when serialising them in a string. To maintain the same behaviour it is required to use theIntEnumPrevious serialisation
redis://:***@redis:6379/RedisDatabase.ANNOUNCEMENTS-> current fixed oneredis://:***@redis:6379/5Related issue/s
How to test
Dev-ops checklist