CaIon пре 2 година
родитељ
комит
2a3373cc8c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      controller/relay-utils.go

+ 1 - 1
controller/relay-utils.go

@@ -135,7 +135,7 @@ func shouldDisableChannel(err *OpenAIError, statusCode int) bool {
 	if err == nil {
 		return false
 	}
-	if statusCode == http.StatusUnauthorized || statusCode == http.StatusTooManyRequests {
+	if statusCode == http.StatusUnauthorized {
 		return true
 	}
 	if err.Type == "insufficient_quota" || err.Code == "invalid_api_key" || err.Code == "account_deactivated" {