You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by wl...@apache.org on 2015/11/26 07:53:11 UTC

incubator-hawq git commit: HAWQ-195. Correct the spelling of parameter rpc.client.socekt.linger.timeout in libyarn

Repository: incubator-hawq
Updated Branches:
  refs/heads/master 897da318d -> f0b86a2d0


HAWQ-195. Correct the spelling of parameter rpc.client.socekt.linger.timeout in libyarn


Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/f0b86a2d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/f0b86a2d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/f0b86a2d

Branch: refs/heads/master
Commit: f0b86a2d0feda55b47425fd84cce9456322cc1e4
Parents: 897da31
Author: Wen Lin <wl...@pivotal.io>
Authored: Thu Nov 26 14:59:17 2015 +0800
Committer: Wen Lin <wl...@pivotal.io>
Committed: Thu Nov 26 14:59:17 2015 +0800

----------------------------------------------------------------------
 depends/libyarn/src/common/SessionConfig.cpp       | 2 +-
 depends/libyarn/test/data/function-test.xml        | 2 +-
 depends/libyarn/test/data/function-test.xml.sample | 2 +-
 src/backend/utils/misc/etc/yarn-client.xml         | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/f0b86a2d/depends/libyarn/src/common/SessionConfig.cpp
----------------------------------------------------------------------
diff --git a/depends/libyarn/src/common/SessionConfig.cpp b/depends/libyarn/src/common/SessionConfig.cpp
index 33be380..9da66c8 100644
--- a/depends/libyarn/src/common/SessionConfig.cpp
+++ b/depends/libyarn/src/common/SessionConfig.cpp
@@ -64,7 +64,7 @@ SessionConfig::SessionConfig(const Config & conf) {
         }, {
             &rpcWriteTimeout, "rpc.client.write.timeout", 3600 * 1000
         }, {
-            &rpcSocketLingerTimeout, "rpc.client.socekt.linger.timeout", -1
+            &rpcSocketLingerTimeout, "rpc.client.socket.linger.timeout", -1
         }, {
             &rpcMaxRetryOnConnect, "rpc.client.connect.retry", 10, bind(CheckRangeGE<int32_t>, _1, _2, 1)
         }, {

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/f0b86a2d/depends/libyarn/test/data/function-test.xml
----------------------------------------------------------------------
diff --git a/depends/libyarn/test/data/function-test.xml b/depends/libyarn/test/data/function-test.xml
index 73ccc2d..d0ba64a 100644
--- a/depends/libyarn/test/data/function-test.xml
+++ b/depends/libyarn/test/data/function-test.xml
@@ -26,7 +26,7 @@ under the License.
 	</property>
 	
 	<property>
-		<name>rpc.socekt.linger.timeout</name>
+		<name>rpc.client.socket.linger.timeout</name>
 		<value>20</value>
 	</property>
 	

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/f0b86a2d/depends/libyarn/test/data/function-test.xml.sample
----------------------------------------------------------------------
diff --git a/depends/libyarn/test/data/function-test.xml.sample b/depends/libyarn/test/data/function-test.xml.sample
index 4f2d207..581a90a 100644
--- a/depends/libyarn/test/data/function-test.xml.sample
+++ b/depends/libyarn/test/data/function-test.xml.sample
@@ -36,7 +36,7 @@
 	</property>
 	
 	<property>
-		<name>rpc.socekt.linger.timeout</name>
+		<name>rpc.client.socket.linger.timeout</name>
 		<value>20</value>
 	</property>
 	

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/f0b86a2d/src/backend/utils/misc/etc/yarn-client.xml
----------------------------------------------------------------------
diff --git a/src/backend/utils/misc/etc/yarn-client.xml b/src/backend/utils/misc/etc/yarn-client.xml
index 0121e74..8255f85 100644
--- a/src/backend/utils/misc/etc/yarn-client.xml
+++ b/src/backend/utils/misc/etc/yarn-client.xml
@@ -105,7 +105,7 @@ HA -->
 	</property>
 	
 	<property>
-		<name>rpc.client.socekt.linger.timeout</name>
+		<name>rpc.client.socket.linger.timeout</name>
 		<value>-1</value>
 		<description>
 		set value to socket SO_LINGER when connect to RPC server. -1 means default OS value. default is -1.