fix(clusterlink): match correct timer ref in router actor
This commit is contained in:
parent
b1aeb35370
commit
d578ac3f9e
|
@ -357,7 +357,7 @@ handle_info({publish, #{}}, St) ->
|
||||||
{noreply, St};
|
{noreply, St};
|
||||||
handle_info({timeout, TRef, reconnect}, St = #st{reconnect_timer = TRef}) ->
|
handle_info({timeout, TRef, reconnect}, St = #st{reconnect_timer = TRef}) ->
|
||||||
{noreply, process_connect(St#st{reconnect_timer = undefined})};
|
{noreply, process_connect(St#st{reconnect_timer = undefined})};
|
||||||
handle_info({timeout, TRef, actor_reinit}, St = #st{reconnect_timer = TRef}) ->
|
handle_info({timeout, TRef, actor_reinit}, St = #st{actor_init_timer = TRef}) ->
|
||||||
?SLOG(error, #{
|
?SLOG(error, #{
|
||||||
msg => "remote_actor_init_timeout",
|
msg => "remote_actor_init_timeout",
|
||||||
target_cluster => St#st.target,
|
target_cluster => St#st.target,
|
||||||
|
|
Loading…
Reference in New Issue