1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-19 00:38:51 +02:00

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
This commit is contained in:
epriestley 2016-11-13 16:29:33 -08:00
parent 6a62fca950
commit 19c6ccb279
2 changed files with 11 additions and 1 deletions

View file

@ -0,0 +1,10 @@
<?php
require_once dirname(__FILE__).'/lib.php';
init_phabricator_script(
array(
// NOTE: We allow aphlict to start with no database, because it's
// reasonable to isolate the notification server from other hosts.
'config.optional' => true,
));

View file

@ -2,7 +2,7 @@
<?php
$root = dirname(dirname(dirname(dirname(__FILE__))));
require_once $root.'/scripts/__init_script__.php';
require_once $root.'/scripts/init/init-aphlict.php';
PhabricatorAphlictManagementWorkflow::requireExtensions();