diff options
author | hozan23 <hozan23@karyontech.net> | 2024-06-22 15:53:22 +0200 |
---|---|---|
committer | hozan23 <hozan23@karyontech.net> | 2024-06-22 15:53:22 +0200 |
commit | eed5fdb54cc261756c828d9c6bd1114e16ec6aa8 (patch) | |
tree | 703e0b31b2d84b9df3eb917e3b2dbf29fb7b0049 /jsonrpc/src | |
parent | 6c793e7ed3f3736e2169976f11e304f288ca6813 (diff) |
jsonrpc/client: close the subscription channel when calling unsubscribe
Diffstat (limited to 'jsonrpc/src')
-rw-r--r-- | jsonrpc/src/client/subscriptions.rs | 4 | ||||
-rw-r--r-- | jsonrpc/src/server/mod.rs | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/jsonrpc/src/client/subscriptions.rs b/jsonrpc/src/client/subscriptions.rs index fe66f96..3583b33 100644 --- a/jsonrpc/src/client/subscriptions.rs +++ b/jsonrpc/src/client/subscriptions.rs @@ -78,7 +78,9 @@ impl Subscriptions { /// Unsubscribe from the provided subscription id. pub(super) async fn unsubscribe(&self, id: &SubscriptionID) { - self.subs.lock().await.remove(id); + if let Some(sub) = self.subs.lock().await.remove(id) { + sub.close(); + } } /// Notifies the subscription about the given notification. diff --git a/jsonrpc/src/server/mod.rs b/jsonrpc/src/server/mod.rs index ddebeb9..bde351e 100644 --- a/jsonrpc/src/server/mod.rs +++ b/jsonrpc/src/server/mod.rs @@ -83,11 +83,11 @@ impl Server { match selfc.listener.accept().await { Ok(conn) => { if let Err(err) = selfc.handle_conn(conn).await { - error!("Failed to handle a new conn: {err}") + error!("Handle a new connection: {err}") } } Err(err) => { - error!("Failed to accept a new conn: {err}") + error!("Accept a new connection: {err}") } } } @@ -249,7 +249,7 @@ impl Server { trace!("--> new request {msg}"); let on_complete = |result: TaskResult<Result<()>>| async move { if let TaskResult::Completed(Err(err)) = result { - error!("Failed to handle a request: {err}"); + error!("Handle a new request: {err}"); } }; let selfc = self.clone(); |