2020-10-17 12:25:57 +00:00
|
|
|
class Invidious::Jobs::UpdateDecryptFunctionJob < Invidious::Jobs::BaseJob
|
|
|
|
def begin
|
|
|
|
loop do
|
|
|
|
begin
|
2020-09-27 17:19:44 +00:00
|
|
|
DECRYPT_FUNCTION.update_decrypt_function
|
2020-10-17 12:25:57 +00:00
|
|
|
rescue ex
|
2021-01-04 15:51:06 +00:00
|
|
|
LOGGER.error("UpdateDecryptFunctionJob : #{ex.message}")
|
2020-10-17 12:25:57 +00:00
|
|
|
ensure
|
|
|
|
sleep 1.minute
|
|
|
|
Fiber.yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|