We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5063750 commit 6e8d198Copy full SHA for 6e8d198
1 file changed
rs/moq-lite/src/ietf/publisher.rs
@@ -189,6 +189,7 @@ impl<S: web_transport_trait::Session> Publisher<S> {
189
let group = tokio::select! {
190
biased;
191
_ = &mut cancel => return Ok(()),
192
+ _ = session.closed() => return Err(Error::Transport),
193
Some(group) = track.next_group().transpose() => group,
194
Some(_) = async { Some(old_group.as_mut()?.await) } => {
195
old_group = None;
0 commit comments