Changeset View
Changeset View
Standalone View
Standalone View
src/applications/diffusion/herald/HeraldCommitAdapter.php
| Show First 20 Lines • Show All 201 Lines • ▼ Show 20 Lines | if ($this->affectedRevision === null) { | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| return $this->affectedRevision; | return $this->affectedRevision; | ||||
| } | } | ||||
| public static function getEnormousByteLimit() { | public static function getEnormousByteLimit() { | ||||
| return 1024 * 1024 * 1024; // 1GB | return 256 * 1024 * 1024; // 256MB. See T13142 and T13143. | ||||
| } | } | ||||
| public static function getEnormousTimeLimit() { | public static function getEnormousTimeLimit() { | ||||
| return 60 * 15; // 15 Minutes | return 60 * 15; // 15 Minutes | ||||
| } | } | ||||
| private function loadCommitDiff() { | private function loadCommitDiff() { | ||||
| $viewer = $this->getViewer(); | $viewer = $this->getViewer(); | ||||
| ▲ Show 20 Lines • Show All 154 Lines • Show Last 20 Lines | |||||