diff --git a/cmd/fhttp/main.py b/cmd/fhttp/main.py index 8c613f2f..29343e83 100644 --- a/cmd/fhttp/main.py +++ b/cmd/fhttp/main.py @@ -58,9 +58,13 @@ def alive(self): return True, "I'm alive!" def ready(self): - logging.info("liveness checked") + logging.info("readiness checked") return True, "I'm ready!" + def stop(self): + logging.info("Cleanup on stop") + # Add cleanup logic here if necessary + # Funciton instance constructor # expected to be named exactly "new"