diff options
author | Rasmus Dahlberg <rasmus@rgdd.se> | 2023-04-01 10:12:42 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2023-04-01 10:12:42 +0200 |
commit | 9b84f21daf8196c883ede8f50c99c479b3ef0cbb (patch) | |
tree | c79f2e1aaa4813d0826f2c3c5372b332ef6e091e /internal | |
parent | 58368a3141377bfb4e9629494c0533c18de896ae (diff) |
Rip out -c and -C
Helpful for systemd-resolved issue, but unlikely to help if the issue is
e.g. recursive DNS resolver that drops look-ups as -c will be cached.
Diffstat (limited to 'internal')
-rw-r--r-- | internal/options/options.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/options/options.go b/internal/options/options.go index 3d03e19..9a9a38c 100644 --- a/internal/options/options.go +++ b/internal/options/options.go @@ -18,8 +18,6 @@ type Options struct { MaxResponse int64 // Health and metrics - CheckerDomain string - CheckerInterval time.Duration MetricsInterval time.Duration Limit int } @@ -34,8 +32,6 @@ func Parse() (opts Options) { flag.DurationVar(&opts.Timeout, "t", 10*time.Second, "timeout for each website visit") flag.Int64Var(&opts.MaxResponse, "r", 128, "max response body size to accept in MiB") - flag.StringVar(&opts.CheckerDomain, "c", "", "domain with onion location for setup santity-checks") - flag.DurationVar(&opts.CheckerInterval, "C", 10*time.Second, "how often to to run checker") flag.DurationVar(&opts.MetricsInterval, "m", 5*time.Second, "how often to emit metrics") flag.IntVar(&opts.Limit, "l", 16, "rate-limit that kicks in before handing out work in requests/s") |