Page MenuHomePhorge

ConduitConnectionGarbageCollector.php
No OneTemporary

Size
705 B
Referenced Files
None
Subscribers
None

ConduitConnectionGarbageCollector.php

<?php
final class ConduitConnectionGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'conduit.connections';
public function getCollectorName() {
return pht('Conduit Connections');
}
public function getDefaultRetentionPolicy() {
return phutil_units('180 days in seconds');
}
protected function collectGarbage() {
$table = new PhabricatorConduitConnectionLog();
$conn_w = $table->establishConnection('w');
queryfx(
$conn_w,
'DELETE FROM %T WHERE dateCreated < %d
ORDER BY dateCreated ASC LIMIT 100',
$table->getTableName(),
$this->getGarbageEpoch());
return ($conn_w->getAffectedRows() == 100);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Jul 16, 2:22 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
367270
Default Alt Text
ConduitConnectionGarbageCollector.php (705 B)

Event Timeline