diff --git a/src/server/index.ts b/src/server/index.ts index 63526ac..dbe8b64 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -6,7 +6,7 @@ const delay = () => { } const ping = async () => { - let response = await fetch("http://localhost:8080/health"); + let response = await fetch("https://localhost:8080/health"); if(response.status !== 200) { throw new Error("Error loading model"); }