nrep
Well-known member
We've got some backend software that monitors our XF installations, including a mechanism to alert us to when deferred tasks are waiting in the background (from XF1). We used to use this code to find out how many deferred tasks there were:
However, this table no longer exists in XF2.1. Is there a way to get the deferred task count now? I've had a look at other tables, but can't see where the tasks could be stored.
Any help would be appreciated.
PHP:
$deferredtasks = $db->fetchRow("SELECT COUNT(*) FROM xf_deferred WHERE manual_execute = 1");
However, this table no longer exists in XF2.1. Is there a way to get the deferred task count now? I've had a look at other tables, but can't see where the tasks could be stored.
Any help would be appreciated.