From 7509c03229cebd6783d49ec86b3979a52442d6c3 Mon Sep 17 00:00:00 2001 From: Eduardo Gurgel Pinho Date: Wed, 4 Feb 2026 11:50:22 +1300 Subject: [PATCH] chore: fix flaky test monitoring plugin increase rate to avoid timing issues --- test/realtime/monitoring/prom_ex/plugins/tenants_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/realtime/monitoring/prom_ex/plugins/tenants_test.exs b/test/realtime/monitoring/prom_ex/plugins/tenants_test.exs index 4ebd99388..f747daac2 100644 --- a/test/realtime/monitoring/prom_ex/plugins/tenants_test.exs +++ b/test/realtime/monitoring/prom_ex/plugins/tenants_test.exs @@ -10,7 +10,7 @@ defmodule Realtime.PromEx.Plugins.TenantsTest do use PromEx, otp_app: :realtime_test_tenants @impl true def plugins do - [{Tenants, poll_rate: 100}] + [{Tenants, poll_rate: 50}] end end