mirror of https://github.com/Icinga/icinga2.git
Merge pull request #8370 from Icinga/bugfix/reload-hang-8173
Application#RunEventLoop(): don't wait for the thread pool to stop on shutdown
This commit is contained in:
commit
72c67fc065
|
@ -342,7 +342,9 @@ void Application::RunEventLoop()
|
||||||
ConfigObject::StopObjects();
|
ConfigObject::StopObjects();
|
||||||
Application::GetInstance()->OnShutdown();
|
Application::GetInstance()->OnShutdown();
|
||||||
|
|
||||||
UninitializeBase();
|
#ifdef I2_DEBUG
|
||||||
|
UninitializeBase(); // Inspired from Exit()
|
||||||
|
#endif /* I2_DEBUG */
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Application::IsShuttingDown()
|
bool Application::IsShuttingDown()
|
||||||
|
|
Loading…
Reference in New Issue