From 019273a1df82b4fc0eda2176cecda711072b6386 Mon Sep 17 00:00:00 2001 From: Emanuele Ferrelli Date: Tue, 9 Dec 2025 16:43:05 +0100 Subject: [PATCH] Fix Chroma Warmup --- .../java/com/olympus/hermione/config/ChromaWarmupService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/olympus/hermione/config/ChromaWarmupService.java b/src/main/java/com/olympus/hermione/config/ChromaWarmupService.java index bc2ff57..c0f9812 100644 --- a/src/main/java/com/olympus/hermione/config/ChromaWarmupService.java +++ b/src/main/java/com/olympus/hermione/config/ChromaWarmupService.java @@ -56,7 +56,7 @@ public class ChromaWarmupService { } private void performWarmup() { - String healthUrl = chromaHost + ":" + chromaPort + "/api/v1/heartbeat"; + String healthUrl = chromaHost + ":" + chromaPort + "/api/v2/heartbeat"; try { long startTime = System.currentTimeMillis();