Skip to content

Commit

Permalink
enhance: use consistent variable aliases (#946)
Browse files Browse the repository at this point in the history
  • Loading branch information
plyr4 authored Aug 29, 2023
1 parent 5df4993 commit 20f3d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions queue/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ var Flags = []cli.Flag{
Value: 60 * time.Second,
},
&cli.StringFlag{
EnvVars: []string{"QUEUE_PRIVATE_KEY"},
EnvVars: []string{"VELA_QUEUE_PRIVATE_KEY", "QUEUE_PRIVATE_KEY"},
FilePath: "/vela/signing.key",
Name: "queue.private-key",
Usage: "set value of base64 encoded queue signing private key",
},
&cli.StringFlag{
EnvVars: []string{"QUEUE_PUBLIC_KEY"},
EnvVars: []string{"VELA_QUEUE_PUBLIC_KEY", "QUEUE_PUBLIC_KEY"},
FilePath: "/vela/signing.pub",
Name: "queue.public-key",
Usage: "set value of base64 encoded queue signing public key",
Expand Down

0 comments on commit 20f3d92

Please sign in to comment.