You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
End users and our sample Spring Cloud integration both identify issue with reusing the Spring config, e.g:
StreamsBuilderFactoryBean streamsBuilderFactoryBean = context.getBean("&stream-builder-process", StreamsBuilderFactoryBean.class);
KafkaStreams streams = streamsBuilderFactoryBean.getKafkaStreams();
Topology topology = streamsBuilderFactoryBean.getTopology();
// Create connection properties for the StreamsRegistry producer to send metrics to internal kPow topics
// You should be able to use streamsBuilderFactoryBean.getStreamsConfiguration() but in this particular case
// Those properties contain 'bootstrap.servers = [[localhost:9092]]' which errors on startup
Properties properties = new Properties();
properties.setProperty("bootstrap.servers", "127.0.0.1:9092");
End users and our sample Spring Cloud integration both identify issue with reusing the Spring config, e.g:
From README: https://github.com/operatr-io/kpow-streams-agent-example-spring
The text was updated successfully, but these errors were encountered: