Fix healthcheck endpoint URL

This commit is contained in:
Rob Ballantyne
2025-10-06 22:16:09 +01:00
parent 639d82f5b4
commit 4fdc314fd9
+1 -1
View File
@@ -70,7 +70,7 @@ class ComfyWorkflowHandler(EndpointHandler[ComfyWorkflowData]):
@property
def healthcheck_endpoint(self) -> Optional[str]:
return "/health"
return f"{MODEL_SERVER_URL}/health"
@classmethod
def payload_cls(cls) -> Type[ComfyWorkflowData]: