You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1927 introduces change, that calls reconnect on clients, used by underlying on-demand header relays. So in worst case, we'll reconnect to (for RBH<>WBH case):
to RBH and WBH clients in MessagesTarget::reconnect;
to Rococo and WBH in OnDemandParachainsRelay::reconnect;
to Rococo and WBH in OnDemandHeadersRelay::reconnect.
So the single MessagesTarget::reconnect call leads to x3 reconnects to WBH node. This (x3 connect+disconnect in 1 sec) may be treated as an improper behavior if e.g. the node is behind some load balancer and may lead to banning the relayer. Would be good to fix it soon.
The text was updated successfully, but these errors were encountered:
#1927 introduces change, that calls reconnect on clients, used by underlying on-demand header relays. So in worst case, we'll reconnect to (for RBH<>WBH case):
MessagesTarget::reconnect
;OnDemandParachainsRelay::reconnect
;OnDemandHeadersRelay::reconnect
.So the single
MessagesTarget::reconnect
call leads to x3 reconnects toWBH
node. This (x3 connect+disconnect in 1 sec) may be treated as an improper behavior if e.g. the node is behind some load balancer and may lead to banning the relayer. Would be good to fix it soon.The text was updated successfully, but these errors were encountered: