Reduce refresh delay, increase backoff start duration

pull/2433/head
Samantaz Fox 2021-10-08 18:39:02 +02:00 zatwierdzone przez GitHub
rodzic 9ba3e1cdb4
commit c6f088d6ca
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -9,7 +9,7 @@ class Invidious::Jobs::RefreshChannelsJob < Invidious::Jobs::BaseJob
lim_fibers = max_fibers
active_fibers = 0
active_channel = Channel(Bool).new
backoff = 1.seconds
backoff = 2.minutes
loop do
LOGGER.debug("RefreshChannelsJob: Refreshing all channels")
@ -59,8 +59,8 @@ class Invidious::Jobs::RefreshChannelsJob < Invidious::Jobs::BaseJob
end
# TODO: make this configurable
LOGGER.debug("RefreshChannelsJob: Done, sleeping for one hour")
sleep 1.hour
LOGGER.debug("RefreshChannelsJob: Done, sleeping for thirty minutes")
sleep 30.minutes
Fiber.yield
end
end