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
There are two places currently where an exception can render advertisepipe non-functional but don't let it appear crashed: 1, 2. In both cases the advertise library which is called may raise AdvertiseErrors and TimeoutErrors (mostly when the node is currently disconnected from the network, or the advertise services are under high load).
Both cases need to be fenced by try/except. If an exception is encountered, it's probably best to just retry after a short pause. The advertise thread must never crash.
The text was updated successfully, but these errors were encountered:
There are two places currently where an exception can render advertisepipe non-functional but don't let it appear crashed: 1, 2. In both cases the advertise library which is called may raise
AdvertiseError
s andTimeoutError
s (mostly when the node is currently disconnected from the network, or the advertise services are under high load).Both cases need to be fenced by
try/except
. If an exception is encountered, it's probably best to just retry after a short pause. The advertise thread must never crash.The text was updated successfully, but these errors were encountered: