Selaa lähdekoodia

Minor changes

Cesar Rodas 1 vuosi sitten
vanhempi
säilyke
449a8a5c5b
2 muutettua tiedostoa jossa 1 lisäystä ja 6 poistoa
  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"
 redis-zero-protocol-parser = "^0.3"
 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"
 tokio-util={version="^0.6", features = ["full"] }
 crc32fast="1.3.2"

+ 0 - 5
src/connection/pubsub_connection.rs

@@ -111,11 +111,6 @@ impl PubsubClient {
         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
     /// other connections) to this connection.
     pub fn sender(&self) -> mpsc::Sender<Value> {