From ef108d4fa77fd9aba48a7b9475c9b72352c16e6a Mon Sep 17 00:00:00 2001 From: Mohammed Junaid Date: Fri, 9 Mar 2012 12:44:05 +0530 Subject: protocol/client: Register a timer(grace-timer) conditionally. A grace timer is registered on a disconnect, but a reconnect timer sends a connect request after every 3sec and if the server is down, the client protocol receives disconnect and a grace timer will be registered which on timeout will increase the lk-version value. Its enough to register the grace timer once after the disconnect and later just ignore other psuedo disconnects. Change-Id: I36a153aa86b350d87fe50d014ee0297f558a7fb6 BUG: 795386 Signed-off-by: Mohammed Junaid Reviewed-on: http://review.gluster.com/2906 Tested-by: Gluster Build System Reviewed-by: Amar Tumballi Reviewed-by: Vijay Bellur --- libglusterfs/src/fd-lk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libglusterfs/src') diff --git a/libglusterfs/src/fd-lk.c b/libglusterfs/src/fd-lk.c index 4e10d649ee9..32f3e0ad063 100644 --- a/libglusterfs/src/fd-lk.c +++ b/libglusterfs/src/fd-lk.c @@ -425,7 +425,7 @@ print_lock_list (fd_lk_ctx_t *lk_ctx) { fd_lk_ctx_node_t *lk = NULL; - gf_log ("fd-lk", GF_LOG_WARNING, "lock list:"); + gf_log ("fd-lk", GF_LOG_DEBUG, "lock list:"); list_for_each_entry (lk, &lk_ctx->lk_list, next) gf_log ("fd-lk", GF_LOG_DEBUG, "owner = %s, " -- cgit