Skip to content

Commit

Permalink
Reduce log level to trace for expected case
Browse files Browse the repository at this point in the history
When remote resets its write half of the stream, we can still send
messages on it. This is not an error condition.
  • Loading branch information
sukunrt committed Jul 30, 2024
1 parent 6d15cbe commit 43a7037
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion association.go
Original file line number Diff line number Diff line change
Expand Up @@ -2389,7 +2389,8 @@ func (a *Association) checkPartialReliabilityStatus(c *chunkPayloadData) {
}
s.lock.RUnlock()
} else {
a.log.Errorf("[%s] stream %d not found)", a.name, c.streamIdentifier)
// Remote has reset its send side of the stream, we can still send data.
a.log.Tracef("[%s] stream %d not found, remote reset", a.name, c.streamIdentifier)
}
}

Expand Down

0 comments on commit 43a7037

Please sign in to comment.