Jobs: Remove the signature function update job

This commit is contained in:
Samantaz Fox
2024-07-03 18:24:08 +02:00
parent 63a729998b
commit a845752fff
4 changed files with 0 additions and 35 deletions

View File

@@ -1,14 +0,0 @@
class Invidious::Jobs::UpdateDecryptFunctionJob < Invidious::Jobs::BaseJob
def begin
loop do
begin
DECRYPT_FUNCTION.update_decrypt_function
rescue ex
LOGGER.error("UpdateDecryptFunctionJob : #{ex.message}")
ensure
sleep 1.minute
Fiber.yield
end
end
end
end