fix(SetupChecks): Link to task processing worker docs

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
pull/62240/head
Marcel Klehr 1 month ago
parent 68dd6aca6b
commit a582e624ef
  1. 6
      apps/settings/lib/SetupChecks/TaskProcessingWorkerIsRunning.php

@ -63,12 +63,14 @@ class TaskProcessingWorkerIsRunning implements ISetupCheck {
if ($lastIteration > 0) {
return SetupResult::warning(
$this->l10n->t('The Task Processing worker does not seem to be running. The last run was at %s.', [date('Y-m-d H:i:s', $lastIteration)])
$this->l10n->t('The Task Processing worker does not seem to be running. The last run was at %s.', [date('Y-m-d H:i:s', $lastIteration)]),
linkToDoc: 'https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed'
);
}
return SetupResult::warning(
$this->l10n->t('The Task Processing worker does not seem to be running. It seems it has never run so far.')
$this->l10n->t('The Task Processing worker does not seem to be running. It seems it has never run so far.'),
linkToDoc: 'https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed'
);
}
}

Loading…
Cancel
Save