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
{{ message }}
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
Currently,
kafka-connect-protobuf-converter
converts proto messages to the object with keys insnake_case
.It happens on line 71:
https://github.com/blueapron/kafka-connect-protobuf-converter/blob/master/src/main/java/com/blueapron/connect/protobuf/ProtobufData.java#L71
String name = descriptor.getName();
Having an option that toggles between
snake_case
andcamelCase
would be great.Changing line 71 mentioned above to:
String name = descriptor.getJsonName();
does it functionality; however, breaks a lot of tests.
The text was updated successfully, but these errors were encountered: