mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
21.35.2013 24adcc2ab34db36272264c29ecb56ef2f2991d91
Unbind requests originating from the HTTP Connection Handler always do not logged as internal operations.

SdkConnectionAdapter.java:
In close(), marked the UnbindOperationBasis as being an internal/inner operation.
1 files modified
3 ■■■■ changed files
opends/src/server/org/opends/server/protocols/http/SdkConnectionAdapter.java 3 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/protocols/http/SdkConnectionAdapter.java
@@ -308,9 +308,10 @@
    if (authInfo != null && authInfo.isAuthenticated())
    {
      final int messageID = nextMessageID.getAndIncrement();
      UnbindOperationBasis operation =
      final UnbindOperationBasis operation =
          new UnbindOperationBasis(clientConnection, messageID, messageID,
              to(request.getControls()));
      operation.setInnerOperation(this.clientConnection.isInnerConnection());
      // run synchronous
      operation.run();