Author: shv
Date: Wed Feb 12 07:06:44 2014
New Revision: 1567537
URL: http://svn.apache.org/r1567537
Log:
HDFS-4858. HDFS DataNode to NameNode RPC should timeout. Contributed by Henry
Wang.
Modified:
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
Modified:
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
URL:
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java?rev=1567537&r1=1567536&r2=1567537&view=diff
==============================================================================
---
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
(original)
+++
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
Wed Feb 12 07:06:44 2014
@@ -220,7 +220,7 @@ public class Client {
* @param conf Configuration
* @return the ping interval
*/
- final static int getPingInterval(Configuration conf) {
+ final public static int getPingInterval(Configuration conf) {
return conf.getInt(CommonConfigurationKeys.IPC_PING_INTERVAL_KEY,
CommonConfigurationKeys.IPC_PING_INTERVAL_DEFAULT);
}