jrnd-io / jrv2

MIT License
1 stars 1 forks source link

feat: change grpc interface to support conf parameters to plugin #41

Closed vmarchese closed 2 weeks ago

vmarchese commented 2 weeks ago

Add configuration params. From:

message ProduceRequest {
   bytes key = 1;
   bytes value = 2;
   map<string,string> headers = 3;
}

to

message ProduceRequest {
   bytes key = 1;
   bytes value = 2;
   map<string,string> headers = 3;
   map<string,string> configParams = 4;
}