KevinSnyderCodes
KevinSnyderCodes
This should be fixed by #2131 and #2180
An implementation of solution 3, which also maintains backwards compatibility, can be found here: https://github.com/open-telemetry/opentelemetry-operator/pull/1032
At the very least, can we make it so the label is not set if the value exceeds 63 characters? As it stands the injector can produce an invalid manifest,...
Sure, but we don't know how long it's going to take to get an answer to that question. A fix to the bug that would get us unblocked without breaking...
@pavolloffay How long are we willing to wait for a response before introducing a backwards-compatible fix? This continues to impact our Kubernetes environments.
For some inputs, gotests fails to generate tests: `typeparams.go` ```go package typeparams type Set[T comparable] struct { m map[T]struct{} } func (o *Set[T]) Add(v T) { o.m[v] = struct{}{} }...
@jaronoff97 That sounds good to me. I no longer use this package in my work. Feel free to take over this PR 👍
Can we reopen this issue? I am trying to accomplish the same as [here](https://github.com/getsentry/sentry-go/issues/291#issuecomment-719456516): create a custom logger that automatically sends events to Sentry in addition to logging them. The...
[Logrus](https://github.com/sirupsen/logrus) is now in maintenance mode, with newer libraries such as [zerolog](https://github.com/rs/zerolog) and [zap](https://github.com/uber-go/zap) offering better performance. What would be nice is to be able to build a custom logger...
I've also created a pull request that expands this to both public and intra subnets: https://github.com/terraform-aws-modules/terraform-aws-vpc/pull/1051 I punted on the other subnet types as their logic was a bit more...