From 88cd085c0cfdfa578d06fae2f9b9411dd03eb81d Mon Sep 17 00:00:00 2001 From: Kamil Bukum Date: Thu, 5 Mar 2026 12:38:35 -0600 Subject: [PATCH 1/2] Ignore record_ecosystem_meta calls in smoke tests Similar to increment_metric, record_ecosystem_meta calls are informational and should not be recorded in test output or checked against expectations. This prevents smoke test failures when the enable_record_ecosystem_meta feature flag is enabled, which causes additional API calls whose content changes with package manager updates. --- internal/server/api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/server/api.go b/internal/server/api.go index cb889ef2..bef51701 100644 --- a/internal/server/api.go +++ b/internal/server/api.go @@ -143,8 +143,8 @@ func (a *API) ServeHTTP(w http.ResponseWriter, r *http.Request) { return } - if kind == "increment_metric" { - // Let's just output the metrics data and stop + if kind == "increment_metric" || kind == "record_ecosystem_meta" { + // These calls are noisy and changeable; skip recording them in output return } From f2eaffff9a3189e60ee382e50ea798f3d0d5a1dd Mon Sep 17 00:00:00 2001 From: Kamil Bukum Date: Thu, 5 Mar 2026 13:24:12 -0600 Subject: [PATCH 2/2] Retrigger CI