Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B6F8018999 for ; Mon, 1 Feb 2016 10:24:20 +0000 (UTC) Received: (qmail 20558 invoked by uid 500); 1 Feb 2016 10:24:11 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 20461 invoked by uid 500); 1 Feb 2016 10:24:11 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 20266 invoked by uid 99); 1 Feb 2016 10:24:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Feb 2016 10:24:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C4751E0942; Mon, 1 Feb 2016 10:24:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Mon, 01 Feb 2016 10:24:15 -0000 Message-Id: <1de928c5519445b788eb12fa20a78600@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [06/12] ignite git commit: Revert PR with wrong author. Revert PR with wrong author. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/304370cf Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/304370cf Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/304370cf Branch: refs/heads/ignite-2224 Commit: 304370cf7500f259e7a3a4699dab9f08a7609200 Parents: e5fda53 Author: Alexey Kuznetsov Authored: Mon Feb 1 10:43:45 2016 +0700 Committer: Alexey Kuznetsov Committed: Mon Feb 1 10:43:45 2016 +0700 ---------------------------------------------------------------------- .../apache/ignite/visor/commands/top/VisorTopologyCommand.scala | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/304370cf/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/top/VisorTopologyCommand.scala ---------------------------------------------------------------------- diff --git a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/top/VisorTopologyCommand.scala b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/top/VisorTopologyCommand.scala index d2ec662..5e278ed 100644 --- a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/top/VisorTopologyCommand.scala +++ b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/top/VisorTopologyCommand.scala @@ -263,13 +263,12 @@ class VisorTopologyCommand extends VisorConsoleCommand { val hostsT = VisorTextTable() - hostsT #= ("Int./Ext. IPs", "Node ID8(@)","Node Type", "OS", "CPUs", "MACs", "CPU Load") + hostsT #= ("Int./Ext. IPs", "Node ID8(@)", "OS", "CPUs", "MACs", "CPU Load") neighborhood.foreach { case (_, neighbors) => var ips = Set.empty[String] var id8s = List.empty[String] - var nodeTypes = List.empty[String] var macs = Set.empty[String] var cpuLoadSum = 0.0 @@ -288,7 +287,6 @@ class VisorTopologyCommand extends VisorConsoleCommand { neighbors.foreach(n => { id8s = id8s :+ (i.toString + ": " + nodeId8(n.id)) - nodeTypes = nodeTypes :+ (if (n.isClient) "Client" else "Server") i += 1 ips = ips ++ n.addresses() @@ -302,7 +300,6 @@ class VisorTopologyCommand extends VisorConsoleCommand { hostsT += ( ips.toSeq, id8s, - nodeTypes, os, cpus, macs.toSeq,