@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.

Fix an issue with marking aborted buildables failed when more than one build is aborted

Summary: See <https://discourse.phabricator-community.org/t/upgrade-issue-2018-week-7-mid-february/1139>.

Test Plan: Used `bin/storage upgrade -f --apply ...` to re-apply the migration.

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

+2 -1
+2 -1
resources/sql/autopatches/20180214.harbor.01.aborted.php
··· 10 10 11 11 $aborted = queryfx_one( 12 12 $conn, 13 - 'SELECT * FROM %T WHERE buildablePHID = %s AND buildStatus = %s', 13 + 'SELECT * FROM %T WHERE buildablePHID = %s AND buildStatus = %s 14 + LIMIT 1', 14 15 id(new HarbormasterBuild())->getTableName(), 15 16 $buildable->getPHID(), 16 17 'aborted');