Skip to content

🧠 playground topic produce not generating enum data with protobuf #6391

New issue

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

Open
vdesabou opened this issue Mar 24, 2025 · 1 comment
Open
Assignees
Labels
bug 🐛 This is a bug that requires a fix

Comments

@vdesabou
Copy link
Owner

playground topic produce -t topic-proto  << 'EOF'
syntax = "proto3";

message Order {           
  float total = 1;
  repeated Item items = 2;
  
  enum Status {
    UNKNOWN = 10;
    ACTIVE = 13;  
    INACTIVE = 12;
    UNRECOGNIZED = -1;
  }
  
  message Item {     
    string name = 1;
    float price = 2;
    Status status = 13;
  }
}
EOF
@vdesabou vdesabou added the bug 🐛 This is a bug that requires a fix label Mar 24, 2025
@vdesabou vdesabou self-assigned this Mar 24, 2025
@vdesabou
Copy link
Owner Author

opened JasonkayZK/mock-protobuf.js#10

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 This is a bug that requires a fix
Projects
None yet
Development

No branches or pull requests

1 participant