You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The client SHOULD interpret RESOURCE_EXHAUSTED code as retryable only if the server signals that the recovery from resource exhaustion is possible.
This is signaled by the server by returning a status containing RetryInfo.
In this case the behavior of the server and the client is exactly as described in OTLP/gRPC Throttling section. If no such status is returned, then the RESOURCE_EXHAUSTED code SHOULD be treated as non-retryable.
Description
From specification:
Current behavior
opentelemetry-go/exporters/otlp/otlpmetric/otlpmetricgrpc/client.go
Lines 175 to 192 in fc0a461
RESOURCE_EXHAUSTED
is always treated as retryable.Expected behavior
Follow the specification.
The text was updated successfully, but these errors were encountered: