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

Add a missing `artifactIndex` key to HarbormasterBuildArtifact

Summary: See PHI176. We issue a query with only `artifactIndex` from `BuildTarget`, but don't have an applicable key.

Test Plan: This isn't on the normal Harbormaster execution path so I'm not 100% sure I have a local repro, but will confirm with customer.

Reviewers: amckinley

Reviewed By: amckinley

Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam

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

+3
+3
src/applications/harbormaster/storage/build/HarbormasterBuildArtifact.php
··· 43 43 'key_target' => array( 44 44 'columns' => array('buildTargetPHID', 'artifactType'), 45 45 ), 46 + 'key_index' => array( 47 + 'columns' => array('artifactIndex'), 48 + ), 46 49 ), 47 50 ) + parent::getConfiguration(); 48 51 }