From 172f9ff26c2a07363b37ea83bdaba4ac6ef70226 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Fri, 18 Mar 2011 21:00:33 +0000
Subject: [PATCH] Fix issue opendj-92: improve replication thread names
---
opends/src/server/org/opends/server/replication/server/StatusAnalyzer.java | 7 ++++---
1 files changed, 4 insertions(+), 3 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 f7a5705..111518d 100644
--- a/opends/src/server/org/opends/server/replication/server/StatusAnalyzer.java
+++ b/opends/src/server/org/opends/server/replication/server/StatusAnalyzer.java
@@ -75,9 +75,10 @@
public StatusAnalyzer(ReplicationServerDomain replicationServerDomain,
int degradedStatusThreshold)
{
- super("Replication Server Status Analyzer for " +
- replicationServerDomain.getBaseDn() + " in RS " +
- replicationServerDomain.getReplicationServer().getServerId());
+ super("Replication server RS("
+ + replicationServerDomain.getReplicationServer()
+ .getServerId() + ") delay monitor for domain \""
+ + replicationServerDomain.getBaseDn() + "\"");
this.replicationServerDomain = replicationServerDomain;
this.degradedStatusThreshold = degradedStatusThreshold;
--
Gitblit v1.10.0