Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: fixing how to handle streams so they cancel properly
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Feb 26, 2024
1 parent 9da2707 commit 1a574e0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions crates/topos-tce-api/src/stream/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,18 +159,12 @@ impl Stream {
}
Err(error) => {
// In case the stream is getting closed from the client side for example
error!("Stream error: {error:?}");
error!("Stream closed! StreamId: {}", error.stream_id);
break;
}
}
}



// Some(_stream_packet) = self.inbound_stream.next() => {
//
// }

else => break,
}
}
Expand Down

0 comments on commit 1a574e0

Please sign in to comment.