From f4045e612c3220796d8784bf33518757e2b5ea69 Mon Sep 17 00:00:00 2001 From: Jamil Date: Thu, 11 Jan 2024 07:11:14 -0800 Subject: [PATCH] fix(portal): Increase receive timeout to alleviate test flakiness (#3168) The increase I added to the other process receive timeouts seemed to fix the flakiness there, so trying it for this last test as well. GH runners can be very slow. https://github.com/firezone/firezone/actions/runs/7484945854/job/20372602149 --- elixir/apps/domain/test/domain/jobs/executors/global_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/apps/domain/test/domain/jobs/executors/global_test.exs b/elixir/apps/domain/test/domain/jobs/executors/global_test.exs index cb2d0a1e7..dfc2d262c 100644 --- a/elixir/apps/domain/test/domain/jobs/executors/global_test.exs +++ b/elixir/apps/domain/test/domain/jobs/executors/global_test.exs @@ -91,6 +91,6 @@ defmodule Domain.Jobs.Executors.GlobalTest do name = {Domain.Jobs.Executors.Global, __MODULE__, :send_test_message} assert :global.whereis_name(name) == new_leader_pid - assert_receive {:executed, ^new_leader_pid, _time}, 200 + assert_receive {:executed, ^new_leader_pid, _time}, 1000 end end