summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/flyscrape/run.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/cmd/flyscrape/run.go b/cmd/flyscrape/run.go
index 9a2a7bb..2d76a35 100644
--- a/cmd/flyscrape/run.go
+++ b/cmd/flyscrape/run.go
@@ -14,7 +14,6 @@ type RunCommand struct{}
func (c *RunCommand) Run(args []string) error {
fs := flag.NewFlagSet("flyscrape-run", flag.ContinueOnError)
- concurrent := fs.Int("concurrent", 0, "concurrency")
noPrettyPrint := fs.Bool("no-pretty-print", false, "no-pretty-print")
fs.Usage = c.Usage
@@ -40,7 +39,6 @@ func (c *RunCommand) Run(args []string) error {
svc := flyscrape.Scraper{
ScrapeOptions: opts,
ScrapeFunc: scrape,
- Concurrency: *concurrent,
}
count := 0
@@ -76,9 +74,6 @@ Usage:
Arguments:
- -concurrent NUM
- Determines the number of concurrent requests.
-
-no-pretty-print
Disables pretty printing of scrape results.