1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00

fix deletes interval

This commit is contained in:
Damodar Lohani 2021-09-07 11:03:30 +05:45
parent 9f93ceec13
commit 1ecd9eecff

View file

@ -43,8 +43,8 @@ $cli
{
Resque::enqueue(Event::DELETE_QUEUE_NAME, Event::DELETE_CLASS_NAME, [
'type' => DELETE_TYPE_USAGE_STATS,
'timestamp1d' => $interval1d,
'timestamp30m' => $interval30m,
'timestamp1d' => time() - $interval1d,
'timestamp30m' => time() - $interval30m,
]);
}