diff options
| author | Raghavendra Bhat <raghavendra@redhat.com> | 2012-10-17 15:36:04 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2012-10-23 07:31:47 -0700 | 
| commit | 8952b2729d7d554ac435a5057f3c758bfe95a2bb (patch) | |
| tree | 22aa5aa42c093b0453ed45bfe3641e2d702d4acd | |
| parent | cf63a76ca03240eb617ca5bd2aa9b3f7abe7b6a4 (diff) | |
glusterd: do not log rdma not found messages in error mode
Change-Id: Ie35b05ed2ee004bd6479ccdd3459cbcd9cf8c208
BUG: 867313
Signed-off-by: Raghavendra Bhat <raghavendra@redhat.com>
Reviewed-on: http://review.gluster.org/4094
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
| -rw-r--r-- | rpc/rpc-lib/src/rpc-transport.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/rpc-lib/src/rpc-transport.c b/rpc/rpc-lib/src/rpc-transport.c index 6d06f0fb..ef80e335 100644 --- a/rpc/rpc-lib/src/rpc-transport.c +++ b/rpc/rpc-lib/src/rpc-transport.c @@ -250,7 +250,7 @@ rpc_transport_load (glusterfs_ctx_t *ctx, dict_t *options, char *trans_name)  	handle = dlopen (name, RTLD_NOW|RTLD_GLOBAL);  	if (handle == NULL) {  		gf_log ("rpc-transport", GF_LOG_ERROR, "%s", dlerror ()); -		gf_log ("rpc-transport", GF_LOG_ERROR, +		gf_log ("rpc-transport", GF_LOG_WARNING,  			"volume '%s': transport-type '%s' is not valid or "  			"not found on this machine",  			trans_name, type);  | 
