From 5f2863eb232fdb54830917a2707ca616a116a0df Mon Sep 17 00:00:00 2001 From: koo-taejin Date: Mon, 12 May 2014 05:40:39 +0000 Subject: [PATCH] =?UTF-8?q?[=EA=B5=AC=ED=83=9C=EC=A7=84]=20=20[pinpoint-we?= =?UTF-8?q?b=20#130]=20Alarm=20=EA=B8=B0=EB=8A=A5=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Alarm 초기화 할수 있게 변경, git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@3825 84d0f5b1-2673-498c-a247-62c4ff18d310 --- .../com/nhn/pinpoint/web/scheduler/DefaultAlarmScheduler.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/nhn/pinpoint/web/scheduler/DefaultAlarmScheduler.java b/src/main/java/com/nhn/pinpoint/web/scheduler/DefaultAlarmScheduler.java index 4b4bb5f2e..bb02e63ba 100644 --- a/src/main/java/com/nhn/pinpoint/web/scheduler/DefaultAlarmScheduler.java +++ b/src/main/java/com/nhn/pinpoint/web/scheduler/DefaultAlarmScheduler.java @@ -101,6 +101,7 @@ public class DefaultAlarmScheduler implements AlarmScheduler { synchronized (this) { if (this.repository == null) { logger.warn("{}'s repository is null. this job will be skipped.", this.getClass().getName()); + return; } int totalJobCount = this.repository.getTotalJobCount();