Skip to content

Commit

Permalink
Making slot channel unbounded (bug)
Browse files Browse the repository at this point in the history
  • Loading branch information
godmodegalactus committed Jan 17, 2024
1 parent f77a89e commit c923f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster-endpoints/src/grpc_multiplex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ pub fn create_grpc_multiplex_slots_subscription(
let mut streams_tasks = Vec::new();
let mut recievers = Vec::new();
for grpc_source in &grpc_sources {
let (sx, rx) = async_channel::bounded(1);
let (sx, rx) = async_channel::unbounded();
let task = create_slot_stream_task(
grpc_source.grpc_addr.clone(),
grpc_source.grpc_x_token.clone(),
Expand Down

0 comments on commit c923f3a

Please sign in to comment.