diff --git a/core/src/main/java/org/mapfish/print/metrics/ApplicationStatus.java b/core/src/main/java/org/mapfish/print/metrics/ApplicationStatus.java index a5bc3527e0..96b214924f 100644 --- a/core/src/main/java/org/mapfish/print/metrics/ApplicationStatus.java +++ b/core/src/main/java/org/mapfish/print/metrics/ApplicationStatus.java @@ -36,9 +36,12 @@ protected Result check() throws Exception { if (jobManager.getLastExecutedJobTimestamp() == null) { return Result.unhealthy("No print job was ever processed by this server" + health); } else if (hasThisServerPrintedRecently()) { + // WIP (See issue https://github.com/mapfish/mapfish-print/issues/3393) if (waitingJobsCount > maxNbrPrintJobQueued) { return Result.unhealthy( - "Number of print jobs queued is above threshold: " + maxNbrPrintJobQueued + health); + "WIP: Number of print jobs queued is above threshold: " + + maxNbrPrintJobQueued + + health); } else { return Result.healthy("This server instance is printing" + health); }