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

Gaetan Boismal
30.52.2014 e4a2363caceb8b95e547f32e0566e9ac17f109b5
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-ldap-toolkit/src/main/java/com/forgerock/opendj/ldap/tools/PerformanceRunnerOptions.java 2 ●●● patch | view | raw | blame | history
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() {