Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fillson-shady committed Sep 3, 2024
1 parent df00064 commit 322a212
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions coyote.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,6 @@ func main() {
Value: &listen{},
Usage: "Exchange & routing key combinations to listen messages.",
},
&cli.BoolFlag{
Name: "persistent",
Usage: "Creates the persistent interceptor queue.",
},
&cli.StringFlag{
Name: "queue",
Value: "interceptor",
Expand All @@ -283,6 +279,10 @@ func main() {
Name: "silent",
Usage: "Disables terminal print.",
},
&cli.BoolFlag{
Name: "persistent",
Usage: "Creates a persistent interceptor queue.",
},
},
Action: func(ctx *cli.Context) error {
rabbitUrl, err := url.Parse(ctx.String("url"))
Expand Down
1 change: 1 addition & 0 deletions coyote_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ GLOBAL OPTIONS:
--insecure Skips certificate verification. (default: false)
--noprompt Disables password prompt. (default: false)
--silent Disables terminal print. (default: false)
--persistent Creates a persistent interceptor queue. (default: false)
--help, -h show help
--version, -v print the version`
)

0 comments on commit 322a212

Please sign in to comment.