elixir phoenix clustered app: Node ~p not responding

%{args: [:"maverick-00-prod-01JNVBWH9HQ30Q6BHXGYD2XGPD@fdaa:6:ee95:a7b:2f8:cbde:15b0:2"], 
label: {:error_logger, :error_msg}, 
format: ~c"** Node ~p not responding **~n** Removing (timedout) connection **~n"}

I have recently started to get this error on my elixir phoenix apps that are connected. I had to make changes to run my app using s6-overlay and suspect it could be due to it.

I am runnig it via Dockerfile and the ENTRYPOINT is

ENTRYPOINT [ \
    "unshare", "--pid", "--fork", "--kill-child=SIGTERM", "--mount-proc", \
    "perl", "-e", "$SIG{INT}=''; $SIG{TERM}=''; exec @ARGV;", "--", \
    "/s6-init" ]

I got this from Workaround for running docker-pihole (w/ s6-overlay v3) on fly.io ยท GitHub

Is there anything that is missing and required to make the elixir phoenix app not throw this error ?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.