Skip to content

Commit 51cee76

Browse files
authored
app: update prune-backup command description (pterodactyl#4754)
1 parent 67b2d94 commit 51cee76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Console/Commands/Maintenance/PruneOrphanedBackupsCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class PruneOrphanedBackupsCommand extends Command
1010
{
1111
protected $signature = 'p:maintenance:prune-backups {--prune-age=}';
1212

13-
protected $description = 'Marks all backups that have not completed in the last "n" minutes as being failed.';
13+
protected $description = 'Marks all backups older than "n" minutes that have not yet completed as being failed.';
1414

1515
/**
1616
* PruneOrphanedBackupsCommand constructor.
@@ -38,7 +38,7 @@ public function handle()
3838
return;
3939
}
4040

41-
$this->warn("Marking $count backups that have not been marked as completed in the last $since minutes as failed.");
41+
$this->warn("Marking $count uncompleted backups that are older than $since minutes as failed.");
4242

4343
$query->update([
4444
'is_successful' => false,

0 commit comments

Comments
 (0)