Skip to content

Commit

Permalink
Merge branch 'main' into refactor/discovery-tasks-r0
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusc93 authored Dec 10, 2024
2 parents e40f25c + 1399e17 commit b55497c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion extensions/warp-ipfs/src/shuttle/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,14 +210,16 @@ impl ShuttleServer {
let identity_announcement = ipfs.pubsub_subscribe(IDENTITY_ANNOUNCEMENT).await?;

let subscriptions = Subscriptions::new(&ipfs, &identity, &message);
let requests = FuturesUnordered::new();
requests.push(futures::future::pending().boxed());

let mut server_event = ShuttleTask {
ipfs: ipfs.clone(),
subscriptions,
root_storage: root,
identity_storage: identity,
message_storage: message,
requests: Default::default(),
requests,
identity_request_response,
message_request_response,
identity_announcement,
Expand Down

0 comments on commit b55497c

Please sign in to comment.