MeltwaterArchive / dropwizard-extra

A set of miscellaneous and common Dropwizard utilities
109 stars 45 forks source link

KafkaProducerFactory build() to build() call with wrong params #36

Open pccyang opened 9 years ago

pccyang commented 9 years ago

public KafkaProducer<?, V> build(final Class<? extends Encoder> messageEncoder, final Environment environment, final String name) { return build(messageEncoder, null, environment, name); }

Should be:

public KafkaProducer<?, V> build(final Class<? extends Encoder> messageEncoder, final Environment environment, final String name) { return build(null, messageEncoder, environment, name); }

pccyang commented 9 years ago

sorry. didn't realize it has already been reported