diff --git a/app.py b/app.py index c391a3b..041dae7 100644 --- a/app.py +++ b/app.py @@ -16,6 +16,14 @@ LOGGER = logging.getLogger(__name__) init_opentelemetry(batch=False) app = flask.Flask(__name__) +@app.get('/health/check') +def health_check(): + return api.sync_center() + +@app.post('/') +def do_nothing(): + return "NOOP" + @app.post('/') def do_task(task_id): task_info = api.get_task_info(task_id)