@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 build generations not being set for strict MySQL

Summary: Target creation fatals otherwise ('buildGeneration' may not be NULL)

Auditors: hach-que

+2 -1
+2 -1
src/applications/harbormaster/storage/build/HarbormasterBuild.php
··· 127 127 128 128 public static function initializeNewBuild(PhabricatorUser $actor) { 129 129 return id(new HarbormasterBuild()) 130 - ->setBuildStatus(self::STATUS_INACTIVE); 130 + ->setBuildStatus(self::STATUS_INACTIVE) 131 + ->setBuildGeneration(0); 131 132 } 132 133 133 134 public function delete() {