binary log improvements

This commit is contained in:
peri4
2021-10-21 18:48:01 +03:00
parent 1cb3d4ffe9
commit f781cc3846
3 changed files with 19 additions and 8 deletions

View File

@@ -163,7 +163,7 @@ bool stopThread(PIThread * t, bool hard) {
return true;
} else {
t->stop();
if (t->waitForFinish(10000)) {
if (!t->waitForFinish(10000)) {
t->terminate();
return true;
}