fix node acl_changed

This commit is contained in:
anlicheng 2026-05-26 22:39:08 +08:00
parent f1fcce9603
commit 2a500cb421

View File

@ -156,7 +156,7 @@ disable_client(Pid, ClientId) when is_pid(Pid), is_binary(ClientId) ->
gen_server:call(Pid, {disable_client, ClientId}).
-spec exposed_service_changed(Pid :: pid(), ClientIds :: [binary()]) -> ok.
exposed_service_changed(Pid, ClientIds) when is_pid(Pid), is_binary(ClientIds) ->
exposed_service_changed(Pid, ClientIds) when is_pid(Pid), is_list(ClientIds) ->
gen_server:call(Pid, {exposed_service_changed, ClientIds}).
-spec get_channel(Pid :: pid(), ClientId :: binary()) -> error | {ok, ChannelPid :: pid()}.