Skip to content

Commit

Permalink
fix(workflow): don't ignore case when testing if a config already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
activeshadow committed Jul 26, 2023
1 parent 517242e commit b9cb0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/go/web/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ func WorkflowUpsertConfig(w http.ResponseWriter, r *http.Request) error {
}

var (
name = strings.ToLower(fmt.Sprintf("%s/%s", cfg.Kind, cfg.Metadata.Name))
name = fmt.Sprintf("%s/%s", cfg.Kind, cfg.Metadata.Name)
tester, _ = store.NewConfig(name)
exists = true
)
Expand Down

0 comments on commit b9cb0b9

Please sign in to comment.