Skip to content

Commit

Permalink
fix: demote already closed stream (#1992)
Browse files Browse the repository at this point in the history
Fixes #1956
  • Loading branch information
gak authored Jul 7, 2024
1 parent a183b6f commit 06b763e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/rpc/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func RetryStreamingClientStream[Req, Resp any](
// We've hit an error.
_, closeErr := stream.CloseAndReceive()
if closeErr != nil {
logger.Logf(logLevel, "Failed to close stream: %s", closeErr)
logger.Logf(log.Debug, "Failed to close stream: %s", closeErr)
}

errored = true
Expand Down

0 comments on commit 06b763e

Please sign in to comment.