Procházet zdrojové kódy

取消429自动禁用

CaIon před 2 roky
rodič
revize
2a3373cc8c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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" {