You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is this. Erlang relies on a fully qualified host name when appending the node name.
Distillery, however, relies on $HOSTNAME to do the same. This may result to situations when commands like remote_console won't work. The example of such a situation would be a host with no DNS name setup: Erlang translates foo to [email protected], but distillery - to foo@hostname.
The expected result would be to use the same appending mechanism that Erlang does. Erlang seems to rely on what the command hostname -f returns.
Steps to reproduce
-name
invm.args
asfoo
(without@
).Description of issue
The issue is this. Erlang relies on a fully qualified host name when appending the node name.
Distillery, however, relies on
$HOSTNAME
to do the same. This may result to situations when commands likeremote_console
won't work. The example of such a situation would be a host with no DNS name setup: Erlang translatesfoo
to[email protected]
, but distillery - tofoo@hostname
.The expected result would be to use the same appending mechanism that Erlang does. Erlang seems to rely on what the command
hostname -f
returns.Suggested fix:
The text was updated successfully, but these errors were encountered: