mirror of
https://git.nadeko.net/Fijxu/invidious.git
synced 2026-01-22 06:41:17 +00:00
14 lines
289 B
Crystal
14 lines
289 B
Crystal
class Invidious::Jobs::CheckExternalProxy < Invidious::Jobs::BaseJob
|
|
def initialize
|
|
end
|
|
|
|
def begin
|
|
loop do
|
|
HttpServer::Utils.check_external_proxy
|
|
LOGGER.info("CheckExternalProxy: Done, sleeping for 1 minute")
|
|
sleep 1.minutes
|
|
Fiber.yield
|
|
end
|
|
end
|
|
end
|