1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-30 05:39:12 +02:00

No attempt to kill threads - just abort

This commit is contained in:
David Steele 2014-02-24 18:04:42 -05:00
parent da41eb3883
commit a84478045e

View File

@ -168,11 +168,11 @@ sub backup_thread_complete
{
if (time() - $lTimeBegin >= $iTimeout)
{
&log(WARN, "threads have been running more than ${iTimeout} seconds, exiting...");
confess &log(WARN, "threads have been running more than ${iTimeout} seconds, exiting...");
backup_thread_kill();
#backup_thread_kill();
confess &log(WARN, "all threads have exited, aborting...");
#confess &log(WARN, "all threads have exited, aborting...");
}
}