mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 07:10:59 +00:00
parent
cfe18932b8
commit
0a848aa884
2 changed files with 19 additions and 1 deletions
|
@ -83,4 +83,7 @@ class Command(BaseCommand):
|
|||
schedule_interval=schedule_interval,
|
||||
run_for=run_for,
|
||||
)
|
||||
async_to_sync(runner.run)()
|
||||
try:
|
||||
async_to_sync(runner.run)()
|
||||
except KeyboardInterrupt:
|
||||
print("Ctrl-C received")
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import asyncio
|
||||
import datetime
|
||||
import os
|
||||
import signal
|
||||
import time
|
||||
import traceback
|
||||
import uuid
|
||||
|
@ -41,6 +43,8 @@ class StatorRunner:
|
|||
self.run_for = run_for
|
||||
self.minimum_loop_delay = 0.5
|
||||
self.maximum_loop_delay = 5
|
||||
# Set up SIGALRM handler
|
||||
signal.signal(signal.SIGALRM, self.alarm_handler)
|
||||
|
||||
async def run(self):
|
||||
sentry.set_takahe_app("stator")
|
||||
|
@ -56,6 +60,9 @@ class StatorRunner:
|
|||
while True:
|
||||
# Do we need to do cleaning?
|
||||
if (time.monotonic() - self.last_clean) >= self.schedule_interval:
|
||||
# Set up the watchdog timer (each time we do this the
|
||||
# previous one is cancelled)
|
||||
signal.alarm(self.schedule_interval * 2)
|
||||
# Refresh the config
|
||||
Config.system = await Config.aload_system()
|
||||
print("Tasks processed this loop:")
|
||||
|
@ -107,6 +114,14 @@ class StatorRunner:
|
|||
print("Complete")
|
||||
return self.handled
|
||||
|
||||
def alarm_handler(self, signum, frame):
|
||||
"""
|
||||
Called when SIGALRM fires, which means we missed a schedule loop.
|
||||
Just exit as we're likely deadlocked.
|
||||
"""
|
||||
print("Watchdog timeout exceeded")
|
||||
os._exit(2)
|
||||
|
||||
async def run_scheduling(self):
|
||||
"""
|
||||
Do any transition cleanup tasks
|
||||
|
|
Loading…
Reference in a new issue