Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion crates/nodes/src/transport/moq/pull.rs
Original file line number Diff line number Diff line change
Expand Up @@ -718,8 +718,16 @@ impl MoqPullNode {
);
return Ok(StreamEndReason::Natural);
},
Err(moq_lite::Error::Cancel) => {
tracing::debug!(
session_packet_count,
total_packet_count = *total_packet_count,
"Track read cancelled"
);
return Ok(StreamEndReason::Reconnect);
},
Err(e) => {
tracing::error!("Error reading from track: {}", e);
tracing::error!(error = %e, session_packet_count, "Error reading from track");
if session_packet_count > 0 {
tracing::warn!(
"Track ended unexpectedly after {} packets - will retry",
Expand Down
Loading