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

gbellato
07.19.2009 ae408b6c09759f61754f3e7b39d5e5d6595c1fc4
opendj-sdk/opends/src/server/org/opends/server/replication/service/CTHeartbeatPublisherThread.java
@@ -64,7 +64,7 @@
   * The time in milliseconds between heartbeats.
   */
  private long heartbeatInterval;
  private short serverId;
  private int serverId;
  /**
   * Set this to stop the thread.
@@ -78,15 +78,15 @@
   * @param session The session on which heartbeats are to be sent.
   * @param heartbeatInterval The interval between heartbeats sent
   *                          (in milliseconds).
   * @param serverId The serverId of the sender domain.
   * @param serverId2 The serverId of the sender domain.
   */
  public CTHeartbeatPublisherThread(String threadName, ProtocolSession session,
                  long heartbeatInterval, short serverId)
                  long heartbeatInterval, int serverId2)
  {
    super(threadName);
    this.session = session;
    this.heartbeatInterval = heartbeatInterval;
    this.serverId = serverId;
    this.serverId = serverId2;
  }
  /**