Przeglądaj źródła

取消429自动禁用

CaIon 2 lat temu
rodzic
commit
2a3373cc8c
1 zmienionych plików z 1 dodań i 1 usunięć
  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" {