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 7b7943d commit cd130b3Copy full SHA for cd130b3
src/Ydb.Sdk/src/Driver.cs
@@ -95,7 +95,11 @@ protected override void OnRpcError(string endpoint, RpcException e)
95
{
96
Logger.LogWarning("gRPC error [{Status}] on channel {Endpoint}", e.Status, endpoint);
97
98
- if (e.StatusCode is Grpc.Core.StatusCode.Cancelled or Grpc.Core.StatusCode.DeadlineExceeded)
+ if (e.StatusCode is
99
+ Grpc.Core.StatusCode.Cancelled or
100
+ Grpc.Core.StatusCode.DeadlineExceeded or
101
+ Grpc.Core.StatusCode.ResourceExhausted
102
+ )
103
104
return;
105
}
0 commit comments