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

Gaetan Boismal
30.52.2014 5030d57f286627416309649c48933c2d21398c90
Fix regression introduced in revision 10927 (OPENDJ-1074) which has incidentally enabled the -F (support re-bind) option in the authrate tool.
* PerformanceRunnerOptions.java: supportRebind setter fixed
1 files modified
2 ■■■ changed files
opendj-sdk/opendj-ldap-toolkit/src/main/java/com/forgerock/opendj/ldap/tools/PerformanceRunnerOptions.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opendj-ldap-toolkit/src/main/java/com/forgerock/opendj/ldap/tools/PerformanceRunnerOptions.java
@@ -52,7 +52,7 @@
    }
    void setSupportsRebind(boolean supportsRebind) {
        this.supportsRebind = !supportsRebind;
        this.supportsRebind = supportsRebind;
    }
    boolean supportsAsynchronousRequests() {