From d408e72de6b31ec6e44a073beb47c067f09fea78 Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Wed, 12 Jul 2006 09:23:19 +0000
Subject: [PATCH] - pre-operation plugins are not called anymore when processing synchronization operations   for ADD,DELELTE and MODIFYDN as it was already the case for MODIFY operation   This is necessary to make sure that entries use the same unique ID everywhere.

---
 opends/src/server/org/opends/server/changelog/Changelog.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opends/src/server/org/opends/server/changelog/Changelog.java b/opends/src/server/org/opends/server/changelog/Changelog.java
index f3bfb9e..880589b 100644
--- a/opends/src/server/org/opends/server/changelog/Changelog.java
+++ b/opends/src/server/org/opends/server/changelog/Changelog.java
@@ -243,7 +243,7 @@
       {
         newSocket =  listenSocket.accept();
         ServerHandler handler = new ServerHandler(
-                                     new SerializingProtocolSession(newSocket));
+                                     new SocketSession(newSocket));
         handler.start(null);
       } catch (IOException e)
       {
@@ -318,7 +318,7 @@
       socket.connect(ServerAddr, 500);
 
       ServerHandler handler = new ServerHandler(
-                                      new SerializingProtocolSession(socket));
+                                      new SocketSession(socket));
       handler.start(baseDn);
     }
     catch (IOException e)

--
Gitblit v1.10.0