From 515fbf88ca1f1fc6e9f410fb6b96dab9e8637832 Mon Sep 17 00:00:00 2001 From: Benjamin Gaussorgues Date: Mon, 29 Jun 2026 16:15:22 +0200 Subject: [PATCH 1/2] chore(jobs): write proper documentation for job:history Signed-off-by: Benjamin Gaussorgues --- core/Command/Background/JobsHistory.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/core/Command/Background/JobsHistory.php b/core/Command/Background/JobsHistory.php index 566dfc550dd01..277b8c64122f9 100644 --- a/core/Command/Background/JobsHistory.php +++ b/core/Command/Background/JobsHistory.php @@ -33,10 +33,11 @@ protected function configure(): void { parent::configure(); $help = <<Run ID: job identifier as found in database (Snowflake ID) + - Status: result of the job (Succeeded, Failed, Crashed) - Class: class of the job - Started at: start time of the job - Server ID: server ID as defined in config.php (see `serverid`). Highlighted if it’s running on current server. @@ -48,7 +49,7 @@ protected function configure(): void { $this ->setName('background-job:history') - ->setDescription('Show currently running jobs') + ->setDescription('List historical job executions') ->setHelp($help) ->addOption('limit', 'l', InputOption::VALUE_REQUIRED, 'Maximum number of results returned by the command', 200) ->addOption('class', 'c', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'Filter by class name', []) From 4e588124a8230279021e78a03ccd9c9436d9c00f Mon Sep 17 00:00:00 2001 From: Benjamin Gaussorgues Date: Thu, 2 Jul 2026 13:57:55 +0200 Subject: [PATCH 2/2] chore(jobs): match documentation of job:history Signed-off-by: Benjamin Gaussorgues --- core/Command/Background/RunningJobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Command/Background/RunningJobs.php b/core/Command/Background/RunningJobs.php index 01c375eb306cc..e3ad3828a82ed 100644 --- a/core/Command/Background/RunningJobs.php +++ b/core/Command/Background/RunningJobs.php @@ -32,7 +32,7 @@ protected function configure(): void { $help = <<Run ID: job identifier a found in database (Snowflake ID) - Class: class of the job - Started at: start time of the job