From 495152826f6429964990beb59ff6e4a68af8e04d Mon Sep 17 00:00:00 2001 From: ryan Date: Sat, 2 Aug 2025 20:08:54 -0700 Subject: [PATCH] Fix COOKIE error by disabling cookies in release config --- server/mix.exs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/mix.exs b/server/mix.exs index 250461b..9332587 100644 --- a/server/mix.exs +++ b/server/mix.exs @@ -34,7 +34,12 @@ defmodule SystemStatsDaemon.MixProject do include_executables_for: [:unix], applications: [runtime_tools: :permanent], include_erts: true, - strip_beams: false + strip_beams: false, + cookie: :disabled, + env: %{ + "RELEASE_DISTRIBUTION" => "none", + "RELEASE_NODE" => "nonode@nohost" + } ] ] end