Skip to content

Commit

Permalink
0005886: Monitor enhancements for centralized support
Browse files Browse the repository at this point in the history
  • Loading branch information
joshahicks committed Jun 30, 2023
1 parent 67aff1a commit 1247730
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -70,7 +70,7 @@ public class Node implements Serializable, Comparable<Node> {
private String deploymentSubType;
private int[] symmetricVersionParts;
private Date lastSuccessfulSyncDate;
private String mostRecentActiveTableSynced;
private String mostRecentActiveTableSynced="";
private int dataRowsToSendCount;
private int dataRowsLoadedCount;
private Date oldestLoadTime;
Expand Down Expand Up @@ -429,7 +429,7 @@ public int compareTo(Node other) {
}

public String getMostRecentActiveTableSynced() {
return mostRecentActiveTableSynced;
return mostRecentActiveTableSynced == null ? "" : mostRecentActiveTableSynced;
}

public void setMostRecentActiveTableSynced(String mostRecentActiveTableSynced) {
Expand Down

0 comments on commit 1247730

Please sign in to comment.