From 9a6ad46e3d7ae9ac683ef790c12937fee8f1143c Mon Sep 17 00:00:00 2001
From: Mohit Agrawal <moagrawa@redhat.com>
Date: Tue, 6 Nov 2018 09:31:50 +0530
Subject: [PATCH 420/444] Modify log message 'DH ciphers are disabled' from
ERROR to INFO
Per the latest comment in bz#1398237 this message is confusing for users
because it suggests an error where none exists.
> Fixes: bz#1626319
> Change-Id: I2f05999da157b11e225bf3d95edb597e964f9923
> Signed-off-by: Omar Kohl <omarkohl@gmail.com>
> (Reviewed on upstream link https://review.gluster.org/#/c/glusterfs/+/21108/)
Change-Id: I154cdd6e33e17d426bcba10fe17fceceba047b16
BUG: 1632563
Signed-off-by: Mohit Agrawal <moagrawa@redhat.com>
Reviewed-on: https://code.engineering.redhat.com/gerrit/155023
Tested-by: RHGS Build Bot <nigelb@redhat.com>
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
---
rpc/rpc-transport/socket/src/socket.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rpc/rpc-transport/socket/src/socket.c b/rpc/rpc-transport/socket/src/socket.c
index 243d49c..8a08177 100644
--- a/rpc/rpc-transport/socket/src/socket.c
+++ b/rpc/rpc-transport/socket/src/socket.c
@@ -4378,7 +4378,7 @@ socket_init (rpc_transport_t *this)
#endif
if ((bio = BIO_new_file(dh_param, "r")) == NULL) {
- gf_log(this->name,GF_LOG_ERROR,
+ gf_log(this->name, GF_LOG_INFO,
"failed to open %s, "
"DH ciphers are disabled", dh_param);
}
--
1.8.3.1