Skip to content

Commit bc38448

Browse files
jeremycrjbcr
andauthored
Apply suggestions from code review
Co-authored-by: jbcr <51637606+jbcr@users.noreply.github.com>
1 parent 83f00e7 commit bc38448

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,9 +597,9 @@ the messenger component instead.
597597

598598
`code-rhapsodie:dataflow:dump-schema` Generates schema create / update SQL queries
599599

600-
`code-rhapsodie:dataflow:set_crashed` Jobs that have been in the "running" status for too long will be set in the "crashed" status.
600+
`code-rhapsodie:dataflow:job:set-crashed` Jobs that have been in the "running" status for too long will be set in the "crashed" status.
601601

602-
`code-rhapsodie:dataflow:job_cleanup` Remove old completed or crashed jobs
602+
`code-rhapsodie:dataflow:job:cleanup` Remove old completed or crashed jobs
603603

604604
### Work with many databases
605605

src/Command/JobCleanupCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Symfony\Component\Console\Input\InputInterface;
1111
use Symfony\Component\Console\Output\OutputInterface;
1212

13-
#[AsCommand(name: 'code-rhapsodie:job_cleanup', description: 'Cleanup job history.')]
13+
#[AsCommand(name: 'code-rhapsodie:job:cleanup', description: 'Cleanup job history.')]
1414
class JobCleanupCommand extends Command
1515
{
1616
public function __construct(private JobRepository $jobRepository, private int $retention)

src/Command/SetCrashedCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Symfony\Component\Console\Input\InputInterface;
1111
use Symfony\Component\Console\Output\OutputInterface;
1212

13-
#[AsCommand(name: 'code-rhapsodie:set_crashed', description: 'Set long running jobs as crashed.')]
13+
#[AsCommand(name: 'code-rhapsodie:job:set-crashed', description: 'Set long running jobs as crashed.')]
1414
class SetCrashedCommand extends Command
1515
{
1616
public function __construct(private JobRepository $jobRepository, private int $crashedDelay)

0 commit comments

Comments
 (0)