Leo Palmer Sunmo
Leo Palmer Sunmo
One could also argue that this setting should be permanent, and not a flag. But if it breaks people's existing CI pipeline a flag might be better.
@yannh Yeah you might be right regarding the confusion of 'strict' flags. It's a non-issue if this becomes the default behaviour though! Would the maintainers be open to making this...
I would love the ability to send commands to running pods. Would solve a lot of problems for me. Big thumbs up!
Wow, didn't realise there were multiple versions of the Blob SDK. That looks like a bit of a mess :grimacing: I especially love how even the deprecated package is in...
Would find this feature very useful. The workaround to use a different port for healthchecks is not ideal as you want to healthcheck the actual serving port.
Yeah I've got that far. The approach I'll be taking is to compile all the schemas I care about, and then use the Schema Registry as supplementary information I think....
I've ended up using https://developers.google.com/protocol-buffers/docs/proto3#any instead to communicate what type the message is. I rely on having compiled the types already, so no "runtime" dynamic fetching of protobuf files.
@dineshgowda24 It's been a while since I looked at this, but I utilise Google's Any format, https://developers.google.com/protocol-buffers/docs/reference/csharp/class/google/protobuf/well-known-types/any. On the producer side I do something like this: ```go func makeNotifEventMessage() []byte...
I am not registering anything with the Schema Registry in these examples. This is a way to work with multiple schemas without using Schema Registry. If you wanted to use...
As someone who uses Vegeta as a library for testing/benchmarking/loadtesting, this is fantastic! Having to manually implement OpenCensus middleware for HTTP is a bit of a pain. Just a note,...