Skip to content

Commit f5bff96

Browse files
Fix help message for passing through syncworker args (#346)
1 parent 5904a85 commit f5bff96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

options.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ func preparePassthroughPrefixes() options.ConfigurationPrefixes {
174174
},
175175
"syncworkers": {
176176
Usage: func(key string) string {
177-
return fmt.Sprintf("Passed through to all sync master instances as --%s", key)
177+
return fmt.Sprintf("Passed through to all sync workers instances as --%s", key)
178178
},
179179
FieldSelector: func(p *options.Configuration, key string) *[]string {
180180
return p.ArgByServerTypeAndName(definitions.ServerTypeSyncWorker, key)
@@ -232,7 +232,7 @@ func preparePassthroughPrefixes() options.ConfigurationPrefixes {
232232
},
233233
"args.syncworkers": {
234234
Usage: func(key string) string {
235-
return fmt.Sprintf("Passed through to all sync master instances as --%s", key)
235+
return fmt.Sprintf("Passed through to all sync workers instances as --%s", key)
236236
},
237237
FieldSelector: func(p *options.Configuration, key string) *[]string {
238238
return p.ArgByServerTypeAndName(definitions.ServerTypeSyncWorker, key)

0 commit comments

Comments
 (0)