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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-kafka-batch-consumer",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "N8N node for consuming Kafka messages in batches",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -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) {