Skip to content

Commit

Permalink
Fix repair comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 20, 2023
1 parent cb9182a commit d69a3cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Minion/Backend/Pg.pm
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ sub repair {
my $minion = $self->minion;
$db->query("DELETE FROM minion_workers WHERE notified < NOW() - INTERVAL '1 second' * ?", $minion->missing_after);

# Old jobs with no unresolved dependencies and expired jobs
# Old jobs
$db->query("DELETE FROM minion_jobs WHERE state = 'finished' AND finished <= NOW() - INTERVAL '1 second' * ?",
$minion->remove_after);

Expand Down

0 comments on commit d69a3cb

Please sign in to comment.