fix: set timeout in seconds (#10283)

pull/10289/head
Kirill Fedoseev 5 months ago committed by GitHub
parent 0209f3d5c6
commit e187299e74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      apps/indexer/lib/indexer/fetcher/beacon/blob.ex

@ -20,7 +20,8 @@ defmodule Indexer.Fetcher.Beacon.Blob do
@default_max_batch_size 10
@default_max_concurrency 1
@default_retries_limit 2
@default_retry_deadline :timer.minutes(5)
# 5 minutes in seconds
@default_retry_deadline 300
@doc """
Asynchronously fetches blobs for given `block_timestamp`.

Loading…
Cancel
Save