Skip to content

Commit

Permalink
fix scaler ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
fira42073 committed Aug 25, 2024
1 parent 93f2dc0 commit 9c9782b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/scaling/scalers_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ func buildScaler(ctx context.Context, client client.Client, triggerType string,
return scalers.NewStackdriverScaler(ctx, config)
case "gcp-storage":
return scalers.NewGcsScaler(config)
case "gitlab-runner":
return scalers.NewGitLabRunnerScaler(config)
case "github-runner":
return scalers.NewGitHubRunnerScaler(config)
case "gitlab-runner":
return scalers.NewGitLabRunnerScaler(config)
case "graphite":
return scalers.NewGraphiteScaler(config)
case "huawei-cloudeye":
Expand Down

0 comments on commit 9c9782b

Please sign in to comment.