v1.0.8
Bug Fix: ._scan()
in RedisCounter._make_counter()
Previously, we were calling ._scan()
multiple times, and using only every other ._scan()
call's results, and never using encoded_dict
.
Now, we're using encoded_dict
and not skippinng over every other ._scan()
call.
In practice, this meant that RedisCounter.most_common()
yielded wrong results. It's fixed in this release.
What's Changed
- Author docstring for BailOutExecutor by @brainix in #288
- Don't bail out from NextId.__current_id getter by @brainix in #289
- Refactor Makefile by @brainix in #291
- Clean up Redis after doctesting README.md by @brainix in #292
- Fix ._scan() bug in RedisCounter._make_counter() by @brainix in #293
Full Changelog: v1.0.7...v1.0.8