File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/Console/Commands/Maintenance Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments