We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cd97ce commit 2a36215Copy full SHA for 2a36215
src/Grpc.Net.Client/GrpcChannel.cs
@@ -545,7 +545,7 @@ internal void RegisterActiveCall(IDisposable grpcCall)
545
{
546
// Test the disposed flag inside the lock to ensure there is no chance of a race and adding a call after dispose.
547
// Note that a GrpcCall has been created but hasn't been started. The error will prevent it from starting.
548
- ObjectDisposedThrowHelper.ThrowIf(Disposed, nameof(GrpcChannel));
+ ObjectDisposedThrowHelper.ThrowIf(Disposed, typeof(GrpcChannel));
549
550
_activeCalls.Add(grpcCall);
551
}
0 commit comments