-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ++redis-rs. * Fix transactions not being routed. Transactions without user routing were routed to a random node, and so almost by default caused a MOVED error and slot refresh. `req_packed_commands` finds the right routing for the transaction. * Fix python exception tests. Longer error messages are shortened by pytest, so we need to use match instead of asserting over the string.
- Loading branch information
Showing
5 changed files
with
93 additions
and
15 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
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
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
Submodule redis-rs
updated
22 files
+0 −1 | .gitignore | |
+2,713 −0 | Cargo.lock | |
+1 −1 | Makefile | |
+290 −0 | redis/fuzz/Cargo.lock | |
+1 −1 | redis/src/aio/connection_manager.rs | |
+22 −17 | redis/src/cluster.rs | |
+5 −6 | redis/src/cluster_async/connections_container.rs | |
+441 −24 | redis/src/cluster_async/connections_logic.rs | |
+237 −88 | redis/src/cluster_async/mod.rs | |
+100 −6 | redis/src/cluster_routing.rs | |
+115 −30 | redis/src/cluster_topology.rs | |
+1 −1 | redis/src/cmd.rs | |
+4 −4 | redis/src/connection.rs | |
+5 −3 | redis/src/lib.rs | |
+3 −3 | redis/src/sentinel.rs | |
+70 −30 | redis/src/types.rs | |
+31 −14 | redis/tests/support/mock_cluster.rs | |
+2 −2 | redis/tests/support/mod.rs | |
+1 −1 | redis/tests/support/sentinel.rs | |
+611 −22 | redis/tests/test_async_cluster_connections_logic.rs | |
+3 −3 | redis/tests/test_cluster.rs | |
+388 −23 | redis/tests/test_cluster_async.rs |