n8n-nodes-kafka-batch-consumer 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -151,6 +151,15 @@ export class KafkaBatchConsumer implements INodeType {
|
|
|
151
151
|
['localhost:9092'],
|
|
152
152
|
};
|
|
153
153
|
|
|
154
|
+
// Debug: log credentials to understand SSL configuration
|
|
155
|
+
console.log('🔍 Kafka Credentials Debug:', {
|
|
156
|
+
ssl: credentials.ssl,
|
|
157
|
+
hasCa: !!credentials.ca,
|
|
158
|
+
hasCert: !!credentials.cert,
|
|
159
|
+
hasKey: !!credentials.key,
|
|
160
|
+
sslType: typeof credentials.ssl,
|
|
161
|
+
});
|
|
162
|
+
|
|
154
163
|
// Map N8N credential fields to KafkaJS authentication format
|
|
155
164
|
// Add SASL authentication if provided
|
|
156
165
|
if (credentials.authentication) {
|