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
During runNode if we have long running operation, such as replaying from storage, node cannot be stopped with SIGTERM.
When a node lost state.db, it starts replaying blocks from storage. During this, Ctrl + C is not handled properly and node cannot be stopped. Main cause is, replaying starts during ctor of the node, thus listeners.node cannot be assigned and is null. Following check fails to stop the node.
During
runNode
if we have long running operation, such as replaying from storage, node cannot be stopped with SIGTERM.When a node lost
state.db
, it starts replaying blocks from storage. During this,Ctrl + C
is not handled properly and node cannot be stopped. Main cause is, replaying starts during ctor of the node, thuslisteners.node
cannot be assigned and is null. Following check fails to stop the node.agora/source/agora/node/main.d
Line 245 in dd2491c
The text was updated successfully, but these errors were encountered: