File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 59
59
* [ ENHANCEMENT] Store Gateway: add metric ` cortex_bucket_store_chunk_refetches_total ` for number of chunk refetches. #5532
60
60
* [ ENHANCEMENT] BasicLifeCycler: allow final-sleep during shutdown #5517
61
61
* [ ENHANCEMENT] All: Handling CMK Access Denied errors. #5420 #5542
62
- * [ ENHANCEMENT] Querier: Retry store gateway chunk pool exhaustion error and client connection closing gRPC error. #5558
62
+ * [ ENHANCEMENT] Querier: Retry store gateway client connection closing gRPC error. #5558
63
63
* [ BUGFIX] Ruler: Validate if rule group can be safely converted back to rule group yaml from protobuf message #5265
64
64
* [ BUGFIX] Querier: Convert gRPC ` ResourceExhausted ` status code from store gateway to 422 limit error. #5286
65
65
* [ BUGFIX] Alertmanager: Route web-ui requests to the alertmanager distributor when sharding is enabled. #5293
Original file line number Diff line number Diff line change @@ -1120,7 +1120,6 @@ func isRetryableError(err error) bool {
1120
1120
// https://github.com/grpc/grpc-go/blob/03172006f5d168fc646d87928d85cb9c4a480291/clientconn.go#L67
1121
1121
case codes .Canceled :
1122
1122
return strings .Contains (err .Error (), "grpc: the client connection is closing" )
1123
- // TODO(yeya24): change Thanos to use ResourceExhausted for chunk pool error.
1124
1123
default :
1125
1124
return false
1126
1125
}
You can’t perform that action at this time.
0 commit comments