Eirik A
Eirik A
String only extensions would still work in that use case for kubernetes extensions, i think, provided they are just passed along and attached correctly / flattened into the schema as...
Btw have pushed my testing code for this issue to [clux/tracing-otlp-test](https://github.com/clux/tracing-otlp-test/blob/master/blah.rs). It has a few extra things in there relating to fetching trace ids, but it's not relevant to the...
Ok, more testing. This does not happen with grpc-sys: ```diff -opentelemetry-otlp = { version = "0.5.0", features = ["async", "tokio"] } +opentelemetry-otlp = { version = "0.5.0", features = ["tokio",...
Ah, a tracing cycle. Interesting. The `EnvFilter` does indeed fix the minimal example, but it leaves my [more complex setup](https://github.com/clux/controller-rs/pull/10/files) broken. I am thinking that this might be a bit...
Just a small update, but no success this time: I tried to make the bug repo re-trigger the bug with an updated EnvFilter, because it is still present on controller-rs....
Ok, I have finally managed to make it work with `tonic` now. Still not sure why it's hanging in my more advanced app, but have at least found out that...
Ah, and you've switched to using hyper directly. I only saw that just now :
I've been trying to tackle this directly. Have written an implementation of a reflector: https://github.com/clux/kubernetes-rust/blob/master/src/api/reflector.rs - to mimic what people do with client-go. This allows us to write kubernetes operators...
Yeah, that change. I added https://github.com/clux/kubernetes-rust/commit/4e3589dd66149cc70c5f3adb42c14fffc52d84fc as well, which will try to deserialize the error. It's not enough to just pass on reqwests error type like i do later on,...
Yeah, that's what I was thinking. Currently dyff already identiifes the "whitespace only change" but then still always inlines those changes anyway. Would be good to focus on the important...