From 296090552c8bb9ad83cfa819fbf0bd9d0ba8fac2 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Mon, 18 Apr 2011 15:55:45 +0000
Subject: [PATCH] Fix OpenDJ-117: IllegalMonitorStateException during server shutdown
---
opends/src/server/org/opends/server/replication/server/StatusAnalyzer.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/server/StatusAnalyzer.java b/opends/src/server/org/opends/server/replication/server/StatusAnalyzer.java
index 111518d..05d97d0 100644
--- a/opends/src/server/org/opends/server/replication/server/StatusAnalyzer.java
+++ b/opends/src/server/org/opends/server/replication/server/StatusAnalyzer.java
@@ -155,7 +155,7 @@
StatusMachineEvent.TO_DEGRADED_STATUS_EVENT);
if (interrupted)
{
- // Finih job and let thread die
+ // Finish job and let thread die
TRACER.debugInfo("Status analyzer for dn " +
replicationServerDomain.getBaseDn().toString() +
" has been interrupted and will die. This is in RS " +
@@ -173,7 +173,7 @@
StatusMachineEvent.TO_NORMAL_STATUS_EVENT);
if (interrupted)
{
- // Finih job and let thread die
+ // Finish job and let thread die
TRACER.debugInfo("Status analyzer for dn " +
replicationServerDomain.getBaseDn().toString() +
" has been interrupted and will die. This is in RS " +
--
Gitblit v1.10.0