This commit is contained in:
Nav
2022-09-15 20:20:25 +01:00
parent 1f0a82d599
commit 2f3692293e

View File

@@ -219,9 +219,9 @@ namespace Bloom
auto* workerThread = workerPair.second;
if (workerThread != nullptr && workerThread->isRunning()) {
Logger::debug("Stopping InsightWorker" + std::to_string(workerId) + " thread");
Logger::debug("Stopping InsightWorker" + std::to_string(workerId));
workerThread->quit();
Logger::debug("Waiting for InsightWorker" + std::to_string(workerId) + " thread to stop");
Logger::debug("Waiting for InsightWorker" + std::to_string(workerId) + " to stop");
workerThread->wait();
}
}