Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LinzN committed Feb 19, 2023
1 parent 90850a0 commit 6613254
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 6613254

Please sign in to comment.