Skip to content

Commit

Permalink
status: make the flaky region default
Browse files Browse the repository at this point in the history
  • Loading branch information
gerryd committed Nov 3, 2023
1 parent f33e5dd commit 8d64e80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions status.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type StatusCmd struct {
Json bool `optional name:"json" help:"Output JSON instead of the default list."`
Loop int `optional name:"loop" help:"Run in a loop and sleep every N microseconds"`
Filename string `optional name:"filename" help:"Output to a file instead of stdout"`
Region string `optional name:"region" help:"Region to read (murderous [default], flaky, unknown)"`
Region string `optional name:"region" help:"Region to read (murderous, flaky [default], unknown)"`
}

type OutputData struct {
Expand Down Expand Up @@ -116,7 +116,7 @@ func (s *StatusCmd) Run(c *Context) error {
case "fazant":
read = readFazant(c, output)
default:
read = readMurderous(c, output)
read = readFlaky(c, output)
}

if (!read) {
Expand Down

0 comments on commit 8d64e80

Please sign in to comment.