From 1de35b7af080dab016595f528494c87e97eeeeb5 Mon Sep 17 00:00:00 2001 From: jayrovacsek Date: Mon, 24 Mar 2025 06:25:07 +1100 Subject: [PATCH] authelia: fix session termination bug --- pkgs/servers/authelia/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/servers/authelia/default.nix b/pkgs/servers/authelia/default.nix index 364060ca90d2..beea275ace20 100644 --- a/pkgs/servers/authelia/default.nix +++ b/pkgs/servers/authelia/default.nix @@ -51,6 +51,11 @@ buildGoModule rec { "-X ${p}.BuildExtra=nixpkgs" ]; + # It is required to set this to avoid a change in the + # handling of sync map in go 1.24+ + # Upstream issue: https://github.com/authelia/authelia/issues/8980 + env.GOEXPERIMENT = "nosynchashtriemap"; + # several tests with networking and several that want chromium doCheck = false;