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
The txHandler and txSyncer are stopped when catching up from a catchpoint, and start again afterwards.
But they never really start. The main loop of these services rely on a context to stop. That context is canceled when stopping. Then, when the services are started again, the contexts remain canceled, which leads for the service to immediately end.
The fix is to create a new context when starting these services.
txSync has another control mechanism to wait starting the loop, which should be handled for "re"-start.
The text was updated successfully, but these errors were encountered:
The txHandler and txSyncer are stopped when catching up from a catchpoint, and start again afterwards.
But they never really start. The main loop of these services rely on a context to stop. That context is canceled when stopping. Then, when the services are started again, the contexts remain canceled, which leads for the service to immediately end.
The fix is to create a new context when starting these services.
txSync has another control mechanism to wait starting the loop, which should be handled for "re"-start.
The text was updated successfully, but these errors were encountered: