mirror of
https://git.nadeko.net/Fijxu/invidious.git
synced 2026-02-11 00:14:42 +00:00
14 lines
304 B
Crystal
14 lines
304 B
Crystal
class Invidious::Jobs::CheckExternalProxy < Invidious::Jobs::BaseJob
|
|
def initialize
|
|
end
|
|
|
|
def begin
|
|
loop do
|
|
Invidious::Routes::API::Manifest.check_external_proxy
|
|
LOGGER.info("CheckExternalProxy: Done, sleeping for 1 minute")
|
|
sleep 1.minutes
|
|
Fiber.yield
|
|
end
|
|
end
|
|
end
|