From 284855947a343dfae60b32cc7d6073edce722d23 Mon Sep 17 00:00:00 2001 From: Qwerty5Uiop Date: Tue, 20 Jun 2023 18:45:54 +0400 Subject: [PATCH] Increase waiting interval --- CHANGELOG.md | 2 +- .../indexer/block/catchup/missing_ranges_collector_test.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84d19f6ba8..6500da9e8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ - [#7516](https://github.com/blockscout/blockscout/pull/7516) - Fix shrinking logo in Safari - [#7590](https://github.com/blockscout/blockscout/pull/7590) - Drop genesis block in internal transactions fetcher - [#7639](https://github.com/blockscout/blockscout/pull/7639) - Fix contract creation transactions -- [#7724](https://github.com/blockscout/blockscout/pull/7724) - Move MissingRangesCollector init logic to handle_continue +- [#7724](https://github.com/blockscout/blockscout/pull/7724), [#7753](https://github.com/blockscout/blockscout/pull/7753) - Move MissingRangesCollector init logic to handle_continue - [#7751](https://github.com/blockscout/blockscout/pull/7751) - Add missing method_to_url params for trace transactions ### Chore diff --git a/apps/indexer/test/indexer/block/catchup/missing_ranges_collector_test.exs b/apps/indexer/test/indexer/block/catchup/missing_ranges_collector_test.exs index 72436eb041..d099be7063 100644 --- a/apps/indexer/test/indexer/block/catchup/missing_ranges_collector_test.exs +++ b/apps/indexer/test/indexer/block/catchup/missing_ranges_collector_test.exs @@ -14,7 +14,7 @@ defmodule Indexer.Block.Catchup.MissingRangesCollectorTest do insert(:block, number: 1_000_000) insert(:block, number: 500_123) MissingRangesCollector.start_link([]) - Process.sleep(500) + Process.sleep(1000) assert [999_999..900_000//-1] = batch = MissingBlockRange.get_latest_batch(1) MissingBlockRange.clear_batch(batch)