Skip to content

Commit

Permalink
Rename strictMode to strict
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenepaniot committed Oct 4, 2022
1 parent 4fb4f9d commit 6321d50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ func main() {
silent := flag.Bool("silent", false, "Suppress output")
dryRun := flag.Bool("dry-run", false, "Consume input but do not send HTTP requests to targets")
timeout := flag.Int("timeout", 10, "HTTP client timeout in seconds")
strictMode := flag.Bool("strictMode", false, "Strict mode")
strict := flag.Bool("strict", false, "Panic on bad input")
memprofile := flag.String("memprofile", "", "Write memory profile to `file` before exit")

flag.Parse()

exitCode := ripley.Replay(*paceStr, *silent, *dryRun, *timeout, *strictMode)
exitCode := ripley.Replay(*paceStr, *silent, *dryRun, *timeout, *strict)
defer os.Exit(exitCode)

if *memprofile != "" {
Expand Down

0 comments on commit 6321d50

Please sign in to comment.