Ver Fonte

Minor changes

Cesar Rodas há 1 ano atrás
pai
commit
449a8a5c5b
2 ficheiros alterados com 1 adições e 6 exclusões
  1. 1 1
      Cargo.toml
  2. 0 5
      src/connection/pubsub_connection.rs

+ 1 - 1
Cargo.toml

@@ -11,7 +11,7 @@ bytes = "1.4"
 byteorder = "1.2.2"
 byteorder = "1.2.2"
 redis-zero-protocol-parser = "^0.3"
 redis-zero-protocol-parser = "^0.3"
 redis-config-parser = {path = "redis-config-parser"}
 redis-config-parser = {path = "redis-config-parser"}
-tokio={version="1.26.0", features = ["full", "tracing"] }
+tokio={version="1", features = ["full", "tracing"] }
 parking_lot="0.11.2"
 parking_lot="0.11.2"
 tokio-util={version="^0.6", features = ["full"] }
 tokio-util={version="^0.6", features = ["full"] }
 crc32fast="1.3.2"
 crc32fast="1.3.2"

+ 0 - 5
src/connection/pubsub_connection.rs

@@ -111,11 +111,6 @@ impl PubsubClient {
         self.meta.read().is_psubcribed
         self.meta.read().is_psubcribed
     }
     }
 
 
-    /// Keeps a record about this connection using pattern suscription
-    pub fn make_psubcribed(&self) {
-        self.meta.write().is_psubcribed = true;
-    }
-
     /// Returns a copy of the pubsub sender. This sender object can be used to send messages (from
     /// Returns a copy of the pubsub sender. This sender object can be used to send messages (from
     /// other connections) to this connection.
     /// other connections) to this connection.
     pub fn sender(&self) -> mpsc::Sender<Value> {
     pub fn sender(&self) -> mpsc::Sender<Value> {