add downcasting

This commit is contained in:
Toshit Chawda 2024-09-14 13:09:14 -07:00
parent c5e93675de
commit 694d87f731
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
3 changed files with 54 additions and 24 deletions

View file

@ -237,7 +237,7 @@ pub async fn handle_wisp(stream: WispResult, id: String) -> anyhow::Result<()> {
debug!(
"new wisp client id {:?} connected with extensions {:?}",
id, mux.supported_extension_ids
id, mux.supported_extensions.iter().map(|x| x.get_id()).collect::<Vec<_>>()
);
let mut set: JoinSet<()> = JoinSet::new();