Fix COOKIE error by disabling cookies in release config

This commit is contained in:
ryan 2025-08-02 20:08:54 -07:00
parent 9b3b7ab39b
commit 495152826f

View File

@ -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