From 269a1d06ff820c287bb21a03fa76e3314110516a Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 22 Apr 2013 10:28:50 +0000
Subject: [PATCH] OPENDJ-832 Leverage the work queue for processing requests received on the HTTP connection handler

---
 opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java b/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
index 4a424e3..4414f35 100644
--- a/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
+++ b/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
@@ -617,7 +617,13 @@
     // time limit for internal client connections.
   }
 
-
+  /** {@inheritDoc} */
+  @Override
+  public boolean isConnectionValid()
+  {
+    // This connection is always valid
+    return true;
+  }
 
   /**
    * Indicates whether this client connection is currently using a

--
Gitblit v1.10.0