diff --git a/src/main/java/de/stem/stemSystem/modules/healthModule/HealthModule.java b/src/main/java/de/stem/stemSystem/modules/healthModule/HealthModule.java index 001df3b..400a96e 100644 --- a/src/main/java/de/stem/stemSystem/modules/healthModule/HealthModule.java +++ b/src/main/java/de/stem/stemSystem/modules/healthModule/HealthModule.java @@ -48,7 +48,7 @@ private void run() { } STEMSystemApp.LOGGER.INFO("Starting system health check..."); - informationBlock = new InformationBlock("System Heath Check", "Starting health check...", STEMSystemApp.getInstance().getScheduler().getDefaultSystemPlugin()); + informationBlock = new InformationBlock("System Health Check", "Starting health check...", STEMSystemApp.getInstance().getScheduler().getDefaultSystemPlugin()); informationBlock.setExpireTime(-1); informationBlock.setIcon("PROGRESS"); STEMSystemApp.getInstance().getInformationModule().queueInformationBlock(informationBlock); diff --git a/src/main/java/de/stem/stemSystem/modules/healthModule/test/DummyHealthCheck.java b/src/main/java/de/stem/stemSystem/modules/healthModule/test/DummyHealthCheck.java index 7aa6582..d08b0f1 100644 --- a/src/main/java/de/stem/stemSystem/modules/healthModule/test/DummyHealthCheck.java +++ b/src/main/java/de/stem/stemSystem/modules/healthModule/test/DummyHealthCheck.java @@ -14,7 +14,7 @@ public DummyHealthCheck() { @Override protected void runCheckProgress() { try { - Thread.sleep(1000 * 30); + Thread.sleep(1000 * 10); } catch (InterruptedException e) { throw new RuntimeException(e); }