From b6a153d8e87d7561fac6562c6ff44c4338266fad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Thu, 9 Apr 2026 16:47:44 +0200 Subject: [PATCH] feat(vcr): add project_id, start and end to QueryMatcherIgnore for container logs tests --- vcr/matchers.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vcr/matchers.go b/vcr/matchers.go index e4b0688c2..aa93735ff 100644 --- a/vcr/matchers.go +++ b/vcr/matchers.go @@ -24,6 +24,9 @@ const ( // QueryMatcherIgnore contains the list of query value that should be ignored when matching requests with cassettes var QueryMatcherIgnore = []string{ "organization_id", + "project_id", + "start", + "end", } func customDockerMatcher(r *http.Request, i cassette.Request) bool {