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 60
60
* [ ENHANCEMENT] Store Gateway: add metric ` cortex_bucket_store_chunk_refetches_total ` for number of chunk refetches. #5532
61
61
* [ ENHANCEMENT] BasicLifeCycler: allow final-sleep during shutdown #5517
62
62
* [ ENHANCEMENT] All: Handling CMK Access Denied errors. #5420 #5542
63
- * [ ENHANCEMENT] Querier: Retry store gateway chunk pool exhaustion error and client connection closing gRPC error. #5558
63
+ * [ ENHANCEMENT] Querier: Retry store gateway client connection closing gRPC error. #5558
64
64
* [ BUGFIX] Ruler: Validate if rule group can be safely converted back to rule group yaml from protobuf message #5265
65
65
* [ BUGFIX] Querier: Convert gRPC ` ResourceExhausted ` status code from store gateway to 422 limit error. #5286
66
66
* [ 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 @@ -1122,7 +1122,6 @@ func isRetryableError(err error) bool {
1122
1122
// https://github.com/grpc/grpc-go/blob/03172006f5d168fc646d87928d85cb9c4a480291/clientconn.go#L67
1123
1123
case codes .Canceled :
1124
1124
return strings .Contains (err .Error (), "grpc: the client connection is closing" )
1125
- // TODO(yeya24): change Thanos to use ResourceExhausted for chunk pool error.
1126
1125
default :
1127
1126
return false
1128
1127
}
You can’t perform that action at this time.
0 commit comments