From 7486ef2bb077feb489a55db86707d96e69d12265 Mon Sep 17 00:00:00 2001
From: ludovicp <ludovicp@localhost>
Date: Fri, 30 Jul 2010 12:44:12 +0000
Subject: [PATCH] Implements a disk space thresholds feature, preventing the server from crashing or exiting of disks full.

---
 opends/src/server/org/opends/server/replication/server/ECLServerHandler.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/server/ECLServerHandler.java b/opends/src/server/org/opends/server/replication/server/ECLServerHandler.java
index c39a7b7..a44c390 100644
--- a/opends/src/server/org/opends/server/replication/server/ECLServerHandler.java
+++ b/opends/src/server/org/opends/server/replication/server/ECLServerHandler.java
@@ -998,7 +998,7 @@
       localString += serverId + " " + serverURL + " " + getServiceId()
        + " " + this.getOperationId();
     else
-      localString += this.getName();
+      localString += this.getClass().getCanonicalName()+ " " + operationId;
     return localString;
   }
   /**
@@ -1030,7 +1030,6 @@
   {
 
     this.operationId = startECLSessionMsg.getOperationId();
-    this.setName(this.getClass().getCanonicalName()+ " " + operationId);
 
     isPersistent  = startECLSessionMsg.isPersistent();
     lastDraftCN   = startECLSessionMsg.getLastDraftChangeNumber();
@@ -1149,7 +1148,8 @@
 
     if (debugEnabled())
       TRACER.debugInfo(
-          this.getName() + " initialized: " +
+          this.getClass().getCanonicalName()+ " " + operationId +
+          " initialized: " +
           " " + dumpState() + " " +
           " " + clDomCtxtsToString(""));
 

--
Gitblit v1.10.0