wix-incubator / kafka-connect-s3

A Kafka-Connect Sink for S3 with no Hadoop dependencies.
Other
57 stars 45 forks source link

fix typo in boolean expression #10

Closed mcandre closed 8 years ago

mcandre commented 8 years ago

The configuration logic appears to want to parse a String to a Long, otherwise applying the default value. However, the boolean expression as written would have non-null user configuration values ignored, and would attempt to parse null values. Seems like a simple typo.

muteor commented 8 years ago

Thanks!