diff options
author | Krishna Srinivas <krishna@zresearch.com> | 2009-03-03 02:54:20 -0800 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-03-05 02:20:31 +0530 |
commit | cb602a1d7d41587c24379cb2636961ab91446f86 (patch) | |
tree | d05f887dff892a569004c9f303992a6e990441b5 | |
parent | eab182e8a8b2f9a89147334f39e51db60aafa953 (diff) |
Changed the default transport-timeout to 600
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
-rw-r--r-- | xlators/protocol/client/src/client-protocol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/protocol/client/src/client-protocol.c b/xlators/protocol/client/src/client-protocol.c index 5212d67c6..bcc98d0f1 100644 --- a/xlators/protocol/client/src/client-protocol.c +++ b/xlators/protocol/client/src/client-protocol.c @@ -6325,8 +6325,8 @@ init (xlator_t *this) "setting transport-timeout to %d", transport_timeout); } else { gf_log (this->name, GF_LOG_DEBUG, - "defaulting transport-timeout to 42"); - transport_timeout = 42; + "defaulting transport-timeout to 600"); + transport_timeout = 600; } ret = dict_get_int32 (this->options, "ping-timeout", |