diff --git a/doc/database/db_workerqueue.md b/doc/database/db_workerqueue.md index 8ab68466be..182358a4c4 100644 --- a/doc/database/db_workerqueue.md +++ b/doc/database/db_workerqueue.md @@ -9,5 +9,6 @@ Table workerqueue | created | | datetime | NO | MUL | 0001-01-01 00:00:00 | | | pid | | int(11) | NO | | 0 | | | executed | | datetime | NO | | 0001-01-01 00:00:00 | | +| done | set to 1 if done | tinyint(1) | NO | | 0 | | Return to [database documentation](help/database) diff --git a/include/poller.php b/include/poller.php index 55aa82a3f5..29a31a96f8 100644 --- a/include/poller.php +++ b/include/poller.php @@ -279,7 +279,7 @@ function poller_exec_function($queue, $funcname, $argv) { $poller_up_start = microtime(true); - /** With these values we can analyze how effective the worker is. + /* With these values we can analyze how effective the worker is. * The database and rest time should be low since this is the unproductive time. * The execution time is the productive time. * By changing parameters like the maximum number of workers we can check the effectivness.