mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
This commit is contained in:
parent
307ad51404
commit
b27d1b3075
1 changed files with 10 additions and 2 deletions
|
@ -86,7 +86,7 @@ abstract class PhabricatorLiskDAO extends LiskDAO {
|
|||
/**
|
||||
* @task config
|
||||
*/
|
||||
public function establishLiveConnection($mode) {
|
||||
public static function getStorageNamespace() {
|
||||
$namespace = end(self::$namespaceStack);
|
||||
if (!strlen($namespace)) {
|
||||
$namespace = self::getDefaultStorageNamespace();
|
||||
|
@ -94,6 +94,14 @@ abstract class PhabricatorLiskDAO extends LiskDAO {
|
|||
if (!strlen($namespace)) {
|
||||
throw new Exception("No storage namespace configured!");
|
||||
}
|
||||
return $namespace;
|
||||
}
|
||||
|
||||
/**
|
||||
* @task config
|
||||
*/
|
||||
public function establishLiveConnection($mode) {
|
||||
$namespace = self::getStorageNamespace();
|
||||
|
||||
$conf = PhabricatorEnv::newObjectFromConfig(
|
||||
'mysql.configuration-provider',
|
||||
|
@ -140,6 +148,6 @@ abstract class PhabricatorLiskDAO extends LiskDAO {
|
|||
abstract public function getApplicationName();
|
||||
|
||||
protected function getConnectionNamespace() {
|
||||
return self::$namespace.'_'.$this->getApplicationName();
|
||||
return self::getStorageNamespace().'_'.$this->getApplicationName();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue