-
Notifications
You must be signed in to change notification settings - Fork 69
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
Merge from redis-rs and fixes for rust 1.80.0 #2029
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ test-env-helpers = "0.2.2" | |
|
||
[dependencies] | ||
tracing = "0.1" | ||
tracing-appender = "0.2.2" | ||
tracing-appender = { version = "0.2.3", default-features = false } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you check if it has any implication to the behavior, does the features connected to our usage in some way? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there's no implications |
||
once_cell = "1.16.0" | ||
file-rotate = "0.7.1" | ||
tracing-subscriber = "0.3.17" |
+1 −0 | .gitignore | |
+17 −3 | redis/src/aio/connection.rs | |
+4 −4 | redis/src/client.rs | |
+60 −23 | redis/src/cluster_async/connections_container.rs | |
+47 −166 | redis/src/cluster_async/connections_logic.rs | |
+35 −15 | redis/src/cluster_async/mod.rs | |
+4 −4 | redis/src/cluster_client.rs | |
+5 −1 | redis/src/cluster_topology.rs | |
+1 −1 | redis/tests/support/cluster.rs | |
+1 −1 | redis/tests/support/mod.rs | |
+87 −163 | redis/tests/test_async_cluster_connections_logic.rs | |
+1 −1 | redis/tests/test_basic.rs | |
+147 −0 | redis/tests/test_cluster_async.rs | |
+2 −2 | redis/tests/test_types.rs |
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.
What is the Idea of this feature?
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.
it's a standalone feature to run heartbeats on the connections which we decided not to enable yet, this is why it's behind a feature flag.