diff options
author | Rasmus Dahlberg <rasmus@rgdd.se> | 2025-03-12 18:18:45 +0100 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2025-03-12 18:18:45 +0100 |
commit | 67e80038c395ac26739ba4802b504862643edc21 (patch) | |
tree | 0a04046cc5367df107e28ff1dba3e608401e0879 /cmd_collect.go | |
parent | 3785997f03bfe81c3e3dd2c89d39737a093c5a73 (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.go | 2 |
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), |