Skip to content

Commit

Permalink
774 and 775 incorrect exit
Browse files Browse the repository at this point in the history
  • Loading branch information
kladkogex committed May 22, 2023
1 parent bbdb37e commit 03b8dad
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
20 changes: 9 additions & 11 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/ConsensusEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -802,9 +802,9 @@ void ConsensusEngine::exitGracefullyAsync() {
try {
LOG( info, "Node exit called" );
node->doSoftAndThenHardExit();
LOG( info, "Node exit completed" );
} catch ( exception& e ) {
SkaleException::logNested( e );
LOG( info, "Node exit completed" );
} catch ( ... ) {
};
} ).detach();
Expand Down

0 comments on commit 03b8dad

Please sign in to comment.