[KAFKA] Fix Kafka Client parameters cache reference 88/127888/2 jakarta
authorRemigiusz Janeczek <remigiusz.janeczek@nokia.com>
Fri, 18 Mar 2022 11:58:16 +0000 (12:58 +0100)
committerMichal Jagiello <michal.jagiello@t-mobile.pl>
Mon, 21 Mar 2022 09:54:19 +0000 (09:54 +0000)
Issue-ID: DMAAP-1705
Signed-off-by: Remigiusz Janeczek <remigiusz.janeczek@nokia.com>
Change-Id: I843d808875afa21499109dd388d85064c62c9bc5

robotframework-onap/ONAPLibrary/KafkaKeywords.py

index 2ebb902..066d2fb 100644 (file)
@@ -1,5 +1,6 @@
 # Copyright 2019 AT&T Intellectual Property. All rights reserved.
 # Copyright (C) 2022 Nordix Foundation
+# Copyright (C) 2022 Nokia
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -36,8 +37,8 @@ class KafkaKeywords(object):
         """connect to the specified kafka server"""
         client = {
             "bootstrap_servers": kafka_host,
-            "sasl_plain_username": sasl_user,
-            "sasl_plain_password": sasl_password,
+            "sasl_username": sasl_user,
+            "sasl_password": sasl_password,
             "security_protocol": 'SASL_PLAINTEXT',
             "ssl_context": ssl.create_default_context(),
             "sasl_mechanism": sasl_mechanism