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
On all of my nodes except one (?) Ctrl-C kills TUI, but the process continue running. Second Ctrl-C kills the process but non of them start shutdown procedure. On one node process exits immediately without any attempt to shutdown (eg close connections).
It seems we don't handle SIGINT in TUI mode. I tried to add a handler in UI code but it's not invoked, I assume ncurses backend handles the signal.
The text was updated successfully, but these errors were encountered:
Fixes#2799
Also 2 Arc's were replaced by one server's instance.
It is needed for p2p thread management in #2778, currently there is no point where we could store thread handles and join them because thread::join
consume the caller, which is impossible in case of Arc.
On all of my nodes except one (?)
Ctrl-C
kills TUI, but the process continue running. SecondCtrl-C
kills the process but non of them start shutdown procedure. On one node process exits immediately without any attempt to shutdown (eg close connections).It seems we don't handle
SIGINT
in TUI mode. I tried to add a handler in UI code but it's not invoked, I assume ncurses backend handles the signal.The text was updated successfully, but these errors were encountered: