Mikhail Mazurskiy

Results 145 comments of Mikhail Mazurskiy

I have the same issue. Trying to use the Go API oracle to set vars but getting this error.

Experiencing the same issue. macOS 14.5 Sonoma, Rancher Desktop 1.14.2. Testcontainers 36573d0adcf650207fb9b8c61072518a84a09674 (a few commits after 0.31.0). ``` Client: Docker Engine - Community Version: 26.1.4 Context: rancher-desktop Debug Mode: false...

Set `TESTCONTAINERS_RYUK_DISABLED` to `true` and things work again.

Hitting this too. All those methods that call the real `WriteHeader()` probably don't need to. They should only check if `w.statusCode` has been set already, and if not, set it...

It seems Kubernetes is removing global metrics, if I'm reading the KEP correctly https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/20191028-metrics-stability-to-beta.md - first goal: > No Kubernetes binaries register metrics to prometheus registries directly. As a user...

> is there a reason you are requesting large buffers but reading very little data in them? Is it because you have no way of knowing ahead of time how...

As I explained in the description, I think the regexes the way they are right now cannot be used. So I agree something needs to change. To be clear, this...

I found https://github.com/prometheus/common/pull/509 that should help remove the deprecated proto package from the transitive dependency list.

Another chain of dependencies is via the `github.com/prometheus/common` too: ``` go mod why -m github.com/golang/protobuf # github.com/golang/protobuf github.com/prometheus/common/config golang.org/x/oauth2 golang.org/x/oauth2/internal google.golang.org/appengine/urlfetch github.com/golang/protobuf/proto ``` Work to address that is tracked in...