summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarekpl <marek.pondel@nokia.com>2019-10-08 16:06:26 +0200
committerMorgan Richomme <morgan.richomme@orange.com>2020-01-09 13:21:22 +0000
commita823b6e793bb8539d1acfaf0664cb0608fe9a261 (patch)
tree07462d39e3cd451bac3c2e0da47601d53d3dd1a8
parent4dfcdb2ae1ee9ccd5e7253879b64800c8fd44dad (diff)
hv-ves ete fix warning 'Sending username and password in the clear'
hv-ves ete fix warning 'Sending username and password in the clear' Issue-ID: DCAEGEN2-565 Signed-off-by: marekpl <marek.pondel@nokia.com> Change-Id: I1ad8bad12bfc68448f15306f9b38d5761019be5e
-rw-r--r--robotframework-onap/ONAPLibrary/KafkaKeywords.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/robotframework-onap/ONAPLibrary/KafkaKeywords.py b/robotframework-onap/ONAPLibrary/KafkaKeywords.py
index 329729b..b52d25a 100644
--- a/robotframework-onap/ONAPLibrary/KafkaKeywords.py
+++ b/robotframework-onap/ONAPLibrary/KafkaKeywords.py
@@ -18,7 +18,9 @@ from kafka import TopicPartition
import ssl
from robot.api.deco import keyword
from robot import utils
+import logging
+logging.getLogger("kafka").setLevel(logging.CRITICAL)
class KafkaKeywords(object):
""" Utilities useful for Kafka consuming and producing """