Error: Invalid value “sasl_ssl” for configuration property “security.protocol”
问题 I'm using node-rdkafka to connect to IBM MessageHub with the following options: var options = { // 'debug': 'all', 'metadata.broker.list': brokers, 'security.protocol': 'sasl_ssl', 'ssl.ca.location': '/etc/ssl/certs', 'sasl.mechanisms': 'PLAIN', 'sasl.username': username, 'sasl.password': password, 'api.version.request': true, 'broker.version.fallback': '0.10.2.1', 'log.connection.close': false, 'dr_msg_cb': true } The client is running on IBM Kubernetes Service pod (Ubuntu). Please advice.