-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixbug: connection is disconnected before idel check, valueError will be raised if a connection(not exist) is removed from connection list * Fixbug: abstract compat.py to handle import problem of asyncio.future * Fixbug: When cancelling a task, CancelledError exception is not propagated to client * Fixbug: XREAD command should accept 0 as a block argument * Fixbug: In redis cluster mode, XREAD command does not function properly * Fixbug: slave connection params when there are no slaves
- Loading branch information
Showing
3 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
) | ||
|
||
|
||
__version__ = '1.1.7' | ||
__version__ = '1.1.8' | ||
|
||
VERSION = tuple(map(int, __version__.split('.'))) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters