Rename new property to channel_refresh_interval

Follow indications :
https://github.com/iv-org/invidious/pull/2915#discussion_r811373503
This commit is contained in:
Féry Mathieu (Mathius)
2022-02-22 00:46:26 +01:00
parent 18197e7e3e
commit dfab62ce48
4 changed files with 5 additions and 5 deletions

View File

@@ -58,8 +58,8 @@ class Invidious::Jobs::RefreshChannelsJob < Invidious::Jobs::BaseJob
end
end
LOGGER.debug("RefreshChannelsJob: Done, sleeping for #{CONFIG.channel_refresh_time}")
sleep CONFIG.channel_refresh_time
LOGGER.debug("RefreshChannelsJob: Done, sleeping for #{CONFIG.channel_refresh_interval}")
sleep CONFIG.channel_refresh_interval
Fiber.yield
end
end