Skip to content

Commit

Permalink
chore: Increase channel size
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusc93 committed Dec 3, 2023
1 parent a1926e0 commit 8dcd659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/warp-ipfs/src/store/event_subscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ impl<T: Clone + Send + 'static + Debug> EventSubscriptionTask<T> {
}

fn subscribe(&mut self) -> Receiver<T> {
let (tx, rx) = channel(1);
let (tx, rx) = channel(128);
self.senders.push(tx);
rx
}
Expand Down

0 comments on commit 8dcd659

Please sign in to comment.