Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0002547: Notification of system event problems
  • Loading branch information
erilong committed Jun 30, 2016
1 parent b4133eb commit 2e4ec92
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -127,7 +127,7 @@ public synchronized void update() {

if (clusterService.lock(ClusterConstants.MONITOR)) {
Lock lock = clusterService.findLocks().get(ClusterConstants.MONITOR);
long clusterLastCheckTime = lock.getLastLockTime().getTime();
long clusterLastCheckTime = lock.getLastLockTime() != null ? lock.getLastLockTime().getTime() : 0;

try {
for (Monitor monitor : activeMonitors) {
Expand Down

0 comments on commit 2e4ec92

Please sign in to comment.