Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / herald / garbagecollector / HeraldWebhookRequestGarbageCollector.php
blob7626f70f00ddd901b597a094058cd645f2373260
1 <?php
3 final class HeraldWebhookRequestGarbageCollector
4 extends PhabricatorGarbageCollector {
6 const COLLECTORCONST = 'herald.webhooks';
8 public function getCollectorName() {
9 return pht('Herald Webhooks');
12 public function getDefaultRetentionPolicy() {
13 return phutil_units('7 days in seconds');
16 protected function collectGarbage() {
17 $table = new HeraldWebhookRequest();
18 $conn_w = $table->establishConnection('w');
20 queryfx(
21 $conn_w,
22 'DELETE FROM %T WHERE dateCreated < %d LIMIT 100',
23 $table->getTableName(),
24 $this->getGarbageEpoch());
26 return ($conn_w->getAffectedRows() == 100);