Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 213532007D1 for ; Thu, 12 May 2016 16:10:26 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 1FE61160939; Thu, 12 May 2016 14:10:26 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 651991602BF for ; Thu, 12 May 2016 16:10:25 +0200 (CEST) Received: (qmail 56502 invoked by uid 500); 12 May 2016 14:10:24 -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 56493 invoked by uid 99); 12 May 2016 14:10:24 -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; Thu, 12 May 2016 14:10:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5027DDFCC0; Thu, 12 May 2016 14:10:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: vozerov@apache.org To: commits@ignite.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: ignite git commit: Revert "Properties added" erroneous commit 513b0f8de869a0fc519fbd3d3e0525b4898c77a2 Date: Thu, 12 May 2016 14:10:24 +0000 (UTC) archived-at: Thu, 12 May 2016 14:10:26 -0000 Repository: ignite Updated Branches: refs/heads/master 513b0f8de -> e176d0462 Revert "Properties added" erroneous commit 513b0f8de869a0fc519fbd3d3e0525b4898c77a2 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e176d046 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e176d046 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e176d046 Branch: refs/heads/master Commit: e176d046284dfc762a84a67576359a68fcf14887 Parents: 513b0f8 Author: Pavel Tupitsyn Authored: Thu May 12 17:10:10 2016 +0300 Committer: Pavel Tupitsyn Committed: Thu May 12 17:10:10 2016 +0300 ---------------------------------------------------------------------- .../Discovery/Tcp/TcpDiscoverySpi.cs | 70 -------------------- 1 file changed, 70 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/e176d046/modules/platforms/dotnet/Apache.Ignite.Core/Discovery/Tcp/TcpDiscoverySpi.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Discovery/Tcp/TcpDiscoverySpi.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Discovery/Tcp/TcpDiscoverySpi.cs index ea471e8..ea946e8 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Discovery/Tcp/TcpDiscoverySpi.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Discovery/Tcp/TcpDiscoverySpi.cs @@ -114,76 +114,6 @@ namespace Apache.Ignite.Core.Discovery.Tcp public TimeSpan JoinTimeout { get; set; } /// - /// Gets or sets a value indicating whether TcpDiscoverySpi is started in server mode - /// regardless of setting. - /// - public bool ForceServerMode { get; set; } - - /// - /// Gets or sets a value indicating whether client does not try to reconnect after - /// server detected client node failure. - /// - public bool ClientReconnectDisabled { get; set; } - - /// - /// Gets or sets the local host IP address that discovery SPI uses. - /// - public string LocalAddress { get; set; } - - /// - /// Gets or sets the number of times node tries to (re)establish connection to another node. - /// - public int ReconnectCount { get; set; } - - /// - /// Gets or sets the local port to listen to. - /// - public int LocalPort { get; set; } - - /// - /// Gets or sets the range for local ports. Local node will try to bind on first available port starting from - /// up until ( + ). - /// - public int LocalPortRange { get; set; } - - /// - /// Gets or sets the maximum heartbeats count node can miss without initiating status check. - /// - public int MaxMissedHeartbeats { get; set; } - - /// - /// Gets or sets the maximum heartbeats count node can miss without failing client node. - /// - public int MaxMissedClientHeartbeats { get; set; } - - /// - /// Gets or sets the statistics print frequency. - /// for no statistics. - /// - public TimeSpan StatisticsPrintFrequency { get; set; } - - /// - /// Gets or sets the IP finder clean frequency. - /// - public TimeSpan IpFinderCleanFrequency { get; set; } - - /// - /// Sets thread priority, 1 (lowest) to 10 (highest). All threads within SPI will be started with it. - /// - public int ThreadPriority { get; set; } - - /// - /// Gets or sets delay between issuing of heartbeat messages. SPI sends heartbeat messages - /// in configurable time interval to other nodes to notify them about its state. - /// - public TimeSpan HeartbeatFrequency { get; set; } - - /// - /// Gets or sets the size of topology snapshots history. - /// - public int TopHistorySize { get; set; } - - /// /// Writes this instance to the specified writer. /// internal void Write(IBinaryRawWriter writer)