Static de-initialization order isn't well thought out so use flushAndExit() instead of returning from main after runNetwork() has been called.

This commit is contained in:
Stephen Atherton 2018-12-17 18:39:14 -08:00
parent 9ef9041fba
commit 779a4b1e3b
1 changed files with 1 additions and 1 deletions

View File

@ -3009,5 +3009,5 @@ int main(int argc, char* argv[]) {
status = FDB_EXIT_MAIN_EXCEPTION;
}
return status;
flushAndExit(status);
}