mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-10 13:58:34 +01:00
Summary: Ref T4571. If `cluster.databases` is configured but only has replicas, implicitly drop to read-only mode and send writes to a replica. Test Plan: - Disabled the `master`, saw Phabricator automatically degrade into read-only mode against replicas. - (Also tested: explicit read-only mode, non-cluster mode, properly configured cluster mode). Reviewers: chad Reviewed By: chad Maniphest Tasks: T4571 Differential Revision: https://secure.phabricator.com/D15672
8 lines
124 B
PHP
8 lines
124 B
PHP
<?php
|
|
|
|
abstract class PhabricatorClusterException
|
|
extends Exception {
|
|
|
|
abstract public function getExceptionTitle();
|
|
|
|
}
|