Application#RunEventLoop(): don't wait for the thread pool to stop on shutdown

refs #8173
This commit is contained in:
Alexander A. Klimov 2020-09-03 14:04:42 +02:00
parent 338d0aaa8c
commit d69c6879fa
1 changed files with 3 additions and 1 deletions

View File

@ -342,7 +342,9 @@ void Application::RunEventLoop()
ConfigObject::StopObjects();
Application::GetInstance()->OnShutdown();
UninitializeBase();
#ifdef I2_DEBUG
UninitializeBase(); // Inspired from Exit()
#endif /* I2_DEBUG */
}
bool Application::IsShuttingDown()