From e1f7ebfa7dd4bda26a9a2963cbd240306b35d4cc Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Tue, 29 Jan 2008 17:59:28 +0000
Subject: [PATCH] Fix for issue 2870: status and dsreplication status do not show replication monitoring The changes consist basically in using the new attributes "approx-older-change-not-synchronized-millis" and "missing-changes" in status and replication status command-lines. In fact a millisecond version of approx-older-change-not-synchronized-millis has been added in order the remote command-line to be able to provide a localized version of the date (instead of directly presenting the date that was written by the server).
---
opends/src/guitools/org/opends/guitools/statuspanel/BaseDNDescriptor.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/statuspanel/BaseDNDescriptor.java b/opends/src/guitools/org/opends/guitools/statuspanel/BaseDNDescriptor.java
index 5ae217b..e30895f 100644
--- a/opends/src/guitools/org/opends/guitools/statuspanel/BaseDNDescriptor.java
+++ b/opends/src/guitools/org/opends/guitools/statuspanel/BaseDNDescriptor.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Portions Copyright 2007 Sun Microsystems, Inc.
+ * Portions Copyright 2007-2008 Sun Microsystems, Inc.
*/
package org.opends.guitools.statuspanel;
@@ -59,7 +59,7 @@
private int nEntries;
private int missingChanges;
private DatabaseDescriptor db;
- private int ageOfOldestMissingChange;
+ private long ageOfOldestMissingChange;
private Type type;
private String baseDn;
private String unescapedDn;
@@ -77,7 +77,7 @@
* @param missingChanges the number of missing changes.
*/
public BaseDNDescriptor(Type type, String baseDn, DatabaseDescriptor db,
- int nEntries, int ageOfOldestMissingChange, int missingChanges)
+ int nEntries, long ageOfOldestMissingChange, int missingChanges)
{
this.baseDn = baseDn;
this.db = db;
@@ -191,7 +191,7 @@
* @return the age of the oldest missing change in seconds in the
* replication topology for this base DN.
*/
- public int getAgeOfOldestMissingChange()
+ public long getAgeOfOldestMissingChange()
{
return ageOfOldestMissingChange;
}
--
Gitblit v1.10.0