commit | deb4ff521a6166ea44a57df924c30ff7b1d68748 | [log] [tgz] |
---|---|---|
author | Jon Hall <jhall@ciena.com> | Mon Nov 06 13:53:26 2017 -0800 |
committer | Thomas Vachuska <tom@opennetworking.org> | Mon Nov 06 22:22:45 2017 +0000 |
tree | ab41a6e0f3a9b2f99038713e917865f6c3d31868 | |
parent | 1d46cb795fb998da161e94a5ba8b61f6720b197a [diff] |
Fix last updated time in the 'nodes' cli command Change-Id: I16a12958556b41429923f438708d1abf819c10b1
diff --git a/cli/src/main/java/org/onosproject/cli/NodesListCommand.java b/cli/src/main/java/org/onosproject/cli/NodesListCommand.java index 8246b1d..4e49fe9 100644 --- a/cli/src/main/java/org/onosproject/cli/NodesListCommand.java +++ b/cli/src/main/java/org/onosproject/cli/NodesListCommand.java
@@ -54,7 +54,7 @@ Instant lastUpdated = service.getLastUpdatedInstant(node.id()); String timeAgo = "Never"; if (lastUpdated != null) { - timeAgo = Tools.timeAgo(lastUpdated.getEpochSecond()); + timeAgo = Tools.timeAgo(lastUpdated.toEpochMilli()); } Version version = service.getVersion(node.id()); print(FMT, node.id(), node.ip(), node.tcpPort(),