Alexander Yastrebov
Alexander Yastrebov
Now it is trivial to implement like: ```diff $ git --no-pager diff -- pkg/crd/gen.go diff --git a/pkg/crd/gen.go b/pkg/crd/gen.go index 9eb4126b..cb6dd964 100644 --- a/pkg/crd/gen.go +++ b/pkg/crd/gen.go @@ -100,6 +100,12 @@ func...
> Feel free to open a PR (please with a corresponding test) Ok, created #912
As a workaround you may try adding default filters like so: ``` -default-filters-prepend='copyRequestHeader("X-Flux-Id", "X-Flow-Id") -> dropHeader("X-Flux-Id")' -default-filters-append='copyRequestHeader("X-Flow-Id", "X-Flux-Id") -> dropHeader("X-Flow-Id")' ```
@wndhydrnt Thank your for the feedback. I think you are right regarding access logs, you may try `default-filters-append` without `dropHeader("X-Flow-Id")'` with a caveat that backend will see X-Flow-Id header which...
https://github.com/zalando/catwatch/blob/master/catwatch-backend/src/main/java/org/zalando/catwatch/backend/model/Project.java#L81 Project.lastPushed is String. Should be date
See also related https://github.com/testcontainers/testcontainers-go/issues/1357
The workaround when sources can be changed is to specify span kind tag on creation which works for both Open Tracing and Open Telemetry bridge spans: ```go opts := []ot.StartSpanOption{ot.Tags{...
Looks like it was fixed by 00534bc
Maybe the string pattern value could be made accessible via special name `r.PathValue("*")` (note also #64910)
> I thought about all possible solutions, if we go with ability of allowing third-party frameworks set pattern, we have to provide a simple extra field to save it. And...