- error handling now uses a more comprehensive error communication system.

This commit is contained in:
Josako
2025-09-11 14:46:28 +02:00
parent 7cb19ca21e
commit a325fa5084
13 changed files with 216 additions and 59 deletions

View File

@@ -28,18 +28,19 @@ def create_app(config_file=None):
configure_logging()
app.logger.info('Starting up eveai_chat_workers...')
register_extensions(app)
register_cache_handlers(app)
from . import specialists, retrievers
celery = make_celery(app.name, app.config)
init_celery(celery, app)
register_cache_handlers(app)
from . import tasks
from eveai_chat_workers import tasks
print(tasks.tasks_ping())
app.logger.info("EveAI Worker Server Started Successfully")
app.logger.info("-------------------------------------------------------------------------------------------------")
return app, celery