Handle trying to stop the bot when threads are running

master
Mark Veidemanis 3 years ago
parent 96168d8d6f
commit aad966feff
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -8,6 +8,7 @@ from klein import Klein
# Other library imports
from json import dumps, loads
from json.decoder import JSONDecodeError
from signal import signal, SIGINT
# Project imports
from settings import settings
@ -18,6 +19,26 @@ from irc import bot
from notify import Notify
from markets import Markets
init_map = None
def handler(sig, frame):
cleanup()
def cleanup():
if init_map:
try:
init_map["tx"].lc_es_checks.stop()
init_map["agora"].lc_dash.stop()
init_map["agora"].lc_cheat.stop()
except: # noqa
pass # noqa
reactor.stop()
signal(SIGINT, handler) # Handle Ctrl-C and run the cleanup routine
def convert(data):
if isinstance(data, bytes):
@ -80,6 +101,8 @@ if __name__ == "__main__":
# Schedule repeatedly refreshing the access token
lc = LoopingCall(init_map["revolut"].get_new_token)
lc.start(int(settings.Revolut.RefreshSec))
# Set up the loops to put data in ES
init_map["tx"].setup_loops()
# Run the WebApp
init_map["webapp"].app.run("127.0.0.1", 8080)

Loading…
Cancel
Save