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

mrossign
06.50.2009 e2fffb673a46292e2821e95dafe5f61f873c781f
- Corrected an error that made monitoring retrieval timeout
- Allow 0 value for monitoring publisher period to allow disable it by configuration

2 files modified
4 ■■■■ changed files
opends/src/admin/defn/org/opends/server/admin/std/ReplicationServerConfiguration.xml 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/replication/server/ReplicationServer.java 2 ●●● patch | view | raw | blame | history
opends/src/admin/defn/org/opends/server/admin/std/ReplicationServerConfiguration.xml
@@ -311,7 +311,7 @@
      </adm:defined>
    </adm:default-behavior>
    <adm:syntax>
      <adm:duration base-unit="ms" lower-limit="1000" />
      <adm:duration base-unit="ms" lower-limit="0" />
    </adm:syntax>
    <adm:profile name="ldap">
      <ldap:attribute>
opends/src/server/org/opends/server/replication/server/ReplicationServer.java
@@ -1545,7 +1545,7 @@
     * @return True if both identifiers are the same.
     */
    public boolean equals(Object obj) {
      if ( (obj == null) || (obj instanceof GlobalServerId))
      if ( (obj == null) || (!(obj instanceof GlobalServerId)))
        return false;
      GlobalServerId globalServerId = (GlobalServerId)obj;