From 56c8c105c65cdc1dc3dd508978f96fad034d28f3 Mon Sep 17 00:00:00 2001 From: Nikola Lardev Date: Wed, 19 Feb 2025 20:14:22 +0200 Subject: [PATCH] DEVDOCS-92 Cron remove fix documentation (#96) --- cron-jobs.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cron-jobs.md b/cron-jobs.md index 8acca75..6ed3c8c 100644 --- a/cron-jobs.md +++ b/cron-jobs.md @@ -87,14 +87,12 @@ php bin/magento cron:status This command will display a table containing information about each cron job, including the job code, status, created date, scheduled date, executed date, and finished date. -If you need to remove a specific job from the cron schedule, you can do so with the following command: +If you need to remove the tasks from crontab, you can do so with the following command: ```bash -php bin/magento cron:remove +php bin/magento cron:remove ``` -Replace `` with the code of the job you wish to remove. - ## Cron Groups Magento 2 uses cron groups to manage related tasks together. A cron group is a set of cron jobs that are managed as a unit. All cron jobs in a group will run in the same process to ensure the resources are effectively used.