TruptiJain commented on pull request #625: URL: https://github.com/apache/camel-k/pull/625#issuecomment-686834389
static Properties generateProperties() { Properties properties = new Properties(); properties.put("bootstrap.servers", BOOTSTRAP_SERVERS); try { properties.put("client.id", InetAddress.getLocalHost().getHostName()); } catch (Exception e) { System.out.println(e); } properties.put("acks", "all"); properties.put("key.deserializer", "org.apache.kafka.common.serialization.StringDeserializer"); properties.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer"); properties.put("group.id", "cbmconsu"); properties.put("security.protocol", "SSL"); properties.put("ssl.protocol", "SSL"); properties.put("ssl.key.password", "password"); properties.put("ssl.keystore.location", "cbmconsu.p12"); properties.put("ssl.keystore.password", "password"); properties.put("ssl.truststore.location", "ciscoprodtruststore.jks"); properties.put("ssl.truststore.password", "password"); properties.put("topic.name", TOPIC); return properties; } its giving me error incorrect path.. but all my values look appropriate. Can anyone help ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org