aboutsummaryrefslogtreecommitdiff
path: root/cmd_collect.go
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus@rgdd.se>2025-03-12 18:18:45 +0100
committerRasmus Dahlberg <rasmus@rgdd.se>2025-03-12 18:18:45 +0100
commit67e80038c395ac26739ba4802b504862643edc21 (patch)
tree0a04046cc5367df107e28ff1dba3e608401e0879 /cmd_collect.go
parent3785997f03bfe81c3e3dd2c89d39737a093c5a73 (diff)
fix: Ensure rate-limits work for get-entries
See further details here: https://github.com/google/certificate-transparency-go/issues/898 We're doing the same fix as silentct until upstream is fixed: https://git.glasklar.is/rgdd/silentct/-/blob/main/internal/monitor/backoff.go
Diffstat (limited to 'cmd_collect.go')
-rw-r--r--cmd_collect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_collect.go b/cmd_collect.go
index 742884a..79043a1 100644
--- a/cmd_collect.go
+++ b/cmd_collect.go
@@ -88,7 +88,7 @@ func collect(opts options) error {
cancel()
return
}
- fetcher := scanner.NewFetcher(cli, &scanner.FetcherOptions{
+ fetcher := scanner.NewFetcher(&backoffClient{cli: cli}, &scanner.FetcherOptions{
BatchSize: int(opts.BatchSize),
StartIndex: th.TreeSize,
EndIndex: int64(sth.TreeSize),