Skip to content

Commit 7b630f2

Browse files
msft-paddy14skitt
authored andcommitted
Replace slash with dot in ConfigMap keys for K8s compliance
Signed-off-by: Paddy <padgupta@microsoft.com>
1 parent f9c1bae commit 7b630f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/workqueue/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ func ConfigFromGlobal(keyPrefix string, defaultConfig *Config) *Config {
7979
}
8080

8181
func ToConfigMapDataKey(prefix, name string) string {
82-
return fmt.Sprintf("%s.workqueue/%s", prefix, name)
82+
return fmt.Sprintf("%s.workqueue.%s", prefix, name)
8383
}

0 commit comments

Comments
 (0)