• Модуль: scale
  • Путь к файлу: ~/bitrix/modules/scale/lib/actionmodifyer.php
  • Класс: BitrixScaleActionModifyer
  • Вызов: ActionModifyer::checkExtraDbExist
static function checkExtraDbExist($actionId, $actionParams, $hostname, $userParamsValues)
{
	if($actionId == "MYSQL_ADD_SLAVE" || $actionId == "MYSQL_CHANGE_MASTER")
		$hostname = ServersData::getDbMasterHostname();

	if(Helper::isExtraDbExist($hostname))
	{
		$actionParams["CHECK_EXTRA_DB_USER_ASK"] = "Y";
		throw new NeedMoreUserInfoException("Need more user's info", $actionParams);
	}

	return $actionParams;
}