fix: tls_certfile_gc notice log don't print abspath
This commit is contained in:
parent
c269079c31
commit
7dade3a52c
|
@ -228,7 +228,8 @@ find_managed_files(Filter, Dir) ->
|
||||||
Acc
|
Acc
|
||||||
end;
|
end;
|
||||||
(AbsPath, {error, Reason}, Acc) ->
|
(AbsPath, {error, Reason}, Acc) ->
|
||||||
?SLOG(notice, "filesystem_object_inaccessible", #{
|
?SLOG(notice, #{
|
||||||
|
msg => "filesystem_object_inaccessible",
|
||||||
abspath => AbsPath,
|
abspath => AbsPath,
|
||||||
reason => Reason
|
reason => Reason
|
||||||
}),
|
}),
|
||||||
|
|
2
dev
2
dev
|
@ -158,7 +158,7 @@ export EMQX_LOG_DIR="$BASE_DIR/log"
|
||||||
CONFIGS_DIR="$EMQX_DATA_DIR/configs"
|
CONFIGS_DIR="$EMQX_DATA_DIR/configs"
|
||||||
# Use your cookie so your IDE can connect to it.
|
# Use your cookie so your IDE can connect to it.
|
||||||
COOKIE="${EMQX_NODE__COOKIE:-${EMQX_NODE_COOKIE:-$(cat ~/.erlang.cookie || echo 'emqxsecretcookie')}}"
|
COOKIE="${EMQX_NODE__COOKIE:-${EMQX_NODE_COOKIE:-$(cat ~/.erlang.cookie || echo 'emqxsecretcookie')}}"
|
||||||
mkdir -p "$EMQX_ETC_DIR" "$EMQX_DATA_DIR/patches" "$EMQX_LOG_DIR" "$CONFIGS_DIR"
|
mkdir -p "$EMQX_ETC_DIR" "$EMQX_DATA_DIR/patches" "$EMQX_DATA_DIR/certs" "$EMQX_LOG_DIR" "$CONFIGS_DIR"
|
||||||
if [ $EKKA_EPMD -eq 1 ]; then
|
if [ $EKKA_EPMD -eq 1 ]; then
|
||||||
EPMD_ARGS='-start_epmd false -epmd_module ekka_epmd'
|
EPMD_ARGS='-start_epmd false -epmd_module ekka_epmd'
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue