fix: keep round-robin as default routing

This commit is contained in:
gwizz
2025-12-22 23:39:41 +11:00
parent b078be4613
commit c020fa60d0
3 changed files with 5 additions and 5 deletions

View File

@@ -130,7 +130,7 @@ type QuotaExceeded struct {
// RoutingConfig configures how credentials are selected for requests.
type RoutingConfig struct {
// Strategy selects the credential selection strategy.
// Supported values: "fill-first" (default), "round-robin".
// Supported values: "round-robin" (default), "fill-first".
Strategy string `yaml:"strategy,omitempty" json:"strategy,omitempty"`
}