@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Accommodate long daemon command lines

Summary: Fixes T2559 with an incredibly original patch which I came up with myself.

Test Plan:
$ ./bin/storage upgrade -f
Applying patch 'phabricator:20130218.longdaemon.sql'...
Storage is up to date. Use 'storage status' for details.

Reviewers: edward

Reviewed By: edward

CC: aran

Maniphest Tasks: T2559

Differential Revision: https://secure.phabricator.com/D5006

+6
+2
resources/sql/patches/20130218.longdaemon.sql
··· 1 + ALTER TABLE {$NAMESPACE}_daemon.daemon_log 2 + CHANGE argv argv LONGTEXT NOT NULL COLLATE utf8_bin;
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 1133 1133 'type' => 'php', 1134 1134 'name' => $this->getPatchPath('20130218.updatechannelid.php'), 1135 1135 ), 1136 + '20130218.longdaemon.sql' => array( 1137 + 'type' => 'sql', 1138 + 'name' => $this->getPatchPath('20130218.longdaemon.sql'), 1139 + ), 1136 1140 ); 1137 1141 } 1138 1142