Skip to content

Commit

Permalink
workers/fetcher/tqfetcher.py: use args.min_interval_seconds! caught i…
Browse files Browse the repository at this point in the history
…n review by @kilemensi
  • Loading branch information
Phil Budne committed Mar 20, 2024
1 parent 6b5f124 commit fa55202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexer/workers/fetcher/tqfetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def process_args(self) -> None:
target_concurrency=self.args.target_concurrency,
max_delay_seconds=self.busy_delay_seconds,
conn_retry_seconds=self.args.conn_retry_minutes * 60,
min_interval_seconds=MIN_INTERVAL_SECONDS,
min_interval_seconds=self.args.min_interval_seconds,
)

self.set_requeue_delay_ms(1000 * self.busy_delay_seconds)
Expand Down

0 comments on commit fa55202

Please sign in to comment.