fix broken stale instance manager

This commit is contained in:
Tao Bror Bojlén 2019-08-07 18:39:27 +03:00
parent cf9ac30b1e
commit 1e4cebb26b
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ defmodule Backend.Crawler.StaleInstanceManager do
@spec get_dead_domains_to_crawl() :: MapSet.t()
defp get_dead_domains_to_crawl() do
now = get_now()
interval_mins = -1 * get_config(:crawl_interval_mins)
interval_mins = get_config(:crawl_interval_mins)
most_recent_successful_crawl_subquery =
Crawl
@ -165,7 +165,7 @@ defmodule Backend.Crawler.StaleInstanceManager do
failed_crawls: failed_crawls
} ->
# The interval is never more than 24 hours
curr_interval = min(1440, interval_mins * :math.pow(2, failed_crawls))
curr_interval = min(1440, interval_mins * round(:math.pow(2, failed_crawls)))
next_crawl = NaiveDateTime.add(most_recent_crawl, curr_interval * 60, :second)
%{