If I start an IEx
session in the following manner the cookie is set correctly.
$ iex --name [email protected] --cookie mycookie -S mix
...
iex([email protected])1> :erlang.get_cookie
:mycookie
However if I also set erlang arguments to get use my sys.config
file the cookie is not set correctly.
$ iex --name [email protected] --cookie mycookie --erl "config sys.config" -S mix
...
iex([email protected])1> :erlang.get_cookie
:USLOPZLYUPUYMEGXBMJQ
How can I set both a config and cookie as command line arguments?
--erl
overrides--cookie
in the first example? Sounds like a bug to me. Elixir should either merge them or disallow specifying both--erl
and--cookie
. – Lethe