We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58ec4e3 commit b8d867aCopy full SHA for b8d867a
src/actinia_core/main.py
@@ -28,6 +28,7 @@
28
29
import os
30
from .endpoints import create_endpoints
31
+from .health_check import health_check
32
from .version import init_versions
33
from actinia_core.core.common.app import flask_app
34
from actinia_core.core.common.config import global_config, DEFAULT_CONFIG_PATH
@@ -71,6 +72,9 @@
71
72
# Create the process queue
73
create_process_queue(global_config)
74
75
+# use import to make linter happy (needed to create endpoint)
76
+health_check = health_check
77
+
78
###############################################################################
79
if __name__ == "__main__":
80
# Connect to the database
0 commit comments