We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description redis sink: complex protobuf data type values not getting synced properly Steps To Reproduce
message TestBookingLogMessage { string customer_name = 1; message TopicMetadata { string topic = 1; int32 qos = 2; } repeated TopicMetadata topics = 2;
Expected behavior ""[{"topic":"world/pns/1/com.hello.owl/701483858/3ac6a577fbd334b4","qos":1}]""
Additional context "[topic: "world/pns/1/com.hello.owl/701483858/3ac6a577fbd334b4"\nqos: 1\n]"
Proposed Fix. Use JsonPrinter in ProtoOdpfParsedMessage.getFieldByName()
The text was updated successfully, but these errors were encountered:
kevinbheda
No branches or pull requests
Description
redis sink: complex protobuf data type values not getting synced properly
Steps To Reproduce
message TestBookingLogMessage { string customer_name = 1; message TopicMetadata { string topic = 1; int32 qos = 2; } repeated TopicMetadata topics = 2;
Expected behavior
""[{"topic":"world/pns/1/com.hello.owl/701483858/3ac6a577fbd334b4","qos":1}]""
Additional context
"[topic: "world/pns/1/com.hello.owl/701483858/3ac6a577fbd334b4"\nqos: 1\n]"
Proposed Fix.
Use JsonPrinter in ProtoOdpfParsedMessage.getFieldByName()
The text was updated successfully, but these errors were encountered: