diff --git a/services/health_service.py b/services/health_service.py index bd01739..79e3098 100644 --- a/services/health_service.py +++ b/services/health_service.py @@ -8,7 +8,7 @@ app = Flask(__name__) start_time = datetime.datetime.now() -@app.route("/") +@app.route('/healthz') def health(): # Find the difference between the current time and start_time in seconds uptime = (datetime.datetime.now() - start_time).total_seconds()