diff options
author | Krutika Dhananjay <kdhananj@redhat.com> | 2012-12-20 13:22:28 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2012-12-20 04:05:18 -0800 |
commit | ab7ffc390778a9a2ab3cb85490707972a1fd3f9b (patch) | |
tree | becffd8c12fde3cec92931911a9dc16bc69331a0 /xlators/protocol/client/src/client-handshake.c | |
parent | 000e65d7af7be31236e060064fb3b4a332e78cf3 (diff) |
protocol/client: print a message regarding brick status in case of failure
that way, it would help admins to look at the corresponding brick directly.
All credit goes to Amar.
Change-Id: I959df59111864cc0574945d827f8fe5f2d919491
BUG: 839021
Signed-off-by: Krutika Dhananjay <kdhananj@redhat.com>
Reviewed-on: http://review.gluster.org/4341
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/protocol/client/src/client-handshake.c')
-rw-r--r-- | xlators/protocol/client/src/client-handshake.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xlators/protocol/client/src/client-handshake.c b/xlators/protocol/client/src/client-handshake.c index f5f056c6a11..61708562a06 100644 --- a/xlators/protocol/client/src/client-handshake.c +++ b/xlators/protocol/client/src/client-handshake.c @@ -1691,7 +1691,9 @@ client_query_portmap_cbk (struct rpc_req *req, struct iovec *iov, int count, voi ret = -1; gf_log (this->name, ((!conf->portmap_err_logged) ? GF_LOG_ERROR : GF_LOG_DEBUG), - "failed to get the port number for remote subvolume"); + "failed to get the port number for remote subvolume. " + "Please run 'gluster volume status' on server to see " + "if brick process is running."); conf->portmap_err_logged = 1; goto out; } |