diff --git a/src/applications/audit/editor/PhabricatorAuditCommentEditor.php b/src/applications/audit/editor/PhabricatorAuditCommentEditor.php --- a/src/applications/audit/editor/PhabricatorAuditCommentEditor.php +++ b/src/applications/audit/editor/PhabricatorAuditCommentEditor.php @@ -263,9 +263,6 @@ $this->publishFeedStory($comment, $feed_phids); } - id(new PhabricatorSearchIndexer()) - ->queueDocumentForIndexing($commit->getPHID()); - if (!$this->noEmail) { $this->sendMail( $comments, diff --git a/src/applications/audit/editor/PhabricatorAuditEditor.php b/src/applications/audit/editor/PhabricatorAuditEditor.php --- a/src/applications/audit/editor/PhabricatorAuditEditor.php +++ b/src/applications/audit/editor/PhabricatorAuditEditor.php @@ -111,4 +111,8 @@ return array_values(array_merge($head, $tail)); } + protected function supportsSearch() { + return true; + } + }