@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 a bad query in LeaseQuery

Summary: Fixes T3610. This got un-scoped at some point, and is only used in Drydock so it escaped notice.

Test Plan: Ran `bin/drydock lease --type host` without hitting an exception about incorrect query construction.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T3610

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

+1 -1
+1 -1
src/infrastructure/daemon/workers/query/PhabricatorWorkerLeaseQuery.php
··· 139 139 if ($this->ids) { 140 140 $where[] = qsprintf( 141 141 $conn_w, 142 - 'task.id IN (%Ld)', 142 + 'id IN (%Ld)', 143 143 $this->ids); 144 144 } 145 145