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

Allow bin/aphlict to start without a valid database connection

Summary:
Ref T11818. See that task for a description.

This is like a tiny pinch of hackiness but not really unreasonable. Basically, `aphlict` is already an "uber-server" and one copy can handle a ton of instances.

Test Plan: Started `bin/aphlict` without a valid database connection.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11818

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

+11 -1
+10
scripts/init/init-aphlict.php
··· 1 + <?php 2 + 3 + require_once dirname(__FILE__).'/lib.php'; 4 + 5 + init_phabricator_script( 6 + array( 7 + // NOTE: We allow aphlict to start with no database, because it's 8 + // reasonable to isolate the notification server from other hosts. 9 + 'config.optional' => true, 10 + ));
+1 -1
support/aphlict/server/aphlict_launcher.php
··· 2 2 <?php 3 3 4 4 $root = dirname(dirname(dirname(dirname(__FILE__)))); 5 - require_once $root.'/scripts/__init_script__.php'; 5 + require_once $root.'/scripts/init/init-aphlict.php'; 6 6 7 7 PhabricatorAphlictManagementWorkflow::requireExtensions(); 8 8