Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1025985
D391.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jun 13, 5:48 PM
Size
1 KB
Mime Type
text/x-diff
Expires
Sat, Jun 14, 5:48 PM (3 h, 54 m)
Engine
blob
Format
Raw Data
Handle
661332
Attached To
D391: INP-1793 - Disable output buffering in Console
D391.diff
View Options
Index: branches/5.2.x/tools/cron.php
===================================================================
--- branches/5.2.x/tools/cron.php
+++ branches/5.2.x/tools/cron.php
@@ -21,6 +21,7 @@
//define('ADMIN', 1); // don't ever define, because this would drastically break down all links built from cron
define('FULL_PATH', realpath(dirname(__FILE__) . '/..'));
define('CMD_MODE', isset($argv) && count($argv) ? 1 : 0);
+define('SKIP_OUT_COMPRESSION', 1);
if ( CMD_MODE ) {
define('DBG_SKIP_REPORTING', 1);
Index: branches/5.2.x/tools/run_event.php
===================================================================
--- branches/5.2.x/tools/run_event.php
+++ branches/5.2.x/tools/run_event.php
@@ -24,6 +24,7 @@
define('ADMIN', 1);
define('FULL_PATH', realpath(dirname(__FILE__) . '/..'));
define('DBG_SKIP_REPORTING', 1);
+define('SKIP_OUT_COMPRESSION', 1);
$_SERVER['HTTP_USER_AGENT'] = 'gecko';
@@ -58,4 +59,4 @@
exit($code);
}
-$end = microtime(true);
\ No newline at end of file
+$end = microtime(true);
Event Timeline
Log In to Comment