Skip to content

Commit da4eb7c

Browse files
authored
Update plugin.json
Add `$ELIXIR_ERL_OPTIONS` env variable and set to `+fnu` to avoid this warning: ``` warning: the VM is running with native name encoding of latin1 which may cause Elixir to malfunction as it expects utf8. Please ensure your locale is set to UTF-8 (which can be verified by running "locale" in your shell) or set the ELIXIR_ERL_OPTIONS="+fnu" environment variable ``` In my case, this was when I activated the `rabbitmq_management` plugin. Signed-off-by: Fakhri A <[email protected]>
1 parent 51372b4 commit da4eb7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rabbitmq/plugin.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"RABBITMQ_ENABLED_PLUGINS_FILE": "{{.DevboxDir}}/conf.d/enabled_plugins",
99
"RABBITMQ_LOG_BASE": "{{.Virtenv}}/log",
1010
"RABBITMQ_NODENAME": "rabbit",
11-
"RABBITMQ_PID_FILE": "{{.Virtenv}}/pid/$RABBITMQ_NODENAME.pid"
11+
"RABBITMQ_PID_FILE": "{{.Virtenv}}/pid/$RABBITMQ_NODENAME.pid",
12+
"ELIXIR_ERL_OPTIONS": "+fnu"
1213
},
1314
"create_files": {
1415
"{{.DevboxDir}}/conf.d/rabbitmq.conf": "config/rabbitmq.conf",

0 commit comments

Comments
 (0)