Revert "setting to skip migration tests by default"
This reverts commit 7cbdd9b90b
.
This commit is contained in:
parent
588a668455
commit
3b249f1967
|
@ -1152,15 +1152,6 @@ $CONFIG = array(
|
||||||
*/
|
*/
|
||||||
'debug' => false,
|
'debug' => false,
|
||||||
|
|
||||||
/**
|
|
||||||
* Skips the migration test during upgrades
|
|
||||||
*
|
|
||||||
* If this is set to true the migration test are deactivated during upgrade.
|
|
||||||
* This is only recommended in installations where upgrade tests are run in
|
|
||||||
* advance with the same data on a test system.
|
|
||||||
*/
|
|
||||||
'update.skip-migration-test' => false,
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This entry is just here to show a warning in case somebody copied the sample
|
* This entry is just here to show a warning in case somebody copied the sample
|
||||||
* configuration. DO NOT ADD THIS SWITCH TO YOUR CONFIGURATION!
|
* configuration. DO NOT ADD THIS SWITCH TO YOUR CONFIGURATION!
|
||||||
|
|
|
@ -42,21 +42,12 @@ if (OC::checkUpgrade(false)) {
|
||||||
// avoid side effects
|
// avoid side effects
|
||||||
\OC_User::setIncognitoMode(true);
|
\OC_User::setIncognitoMode(true);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$logger = \OC::$server->getLogger();
|
$logger = \OC::$server->getLogger();
|
||||||
$config = \OC::$server->getConfig();
|
|
||||||
$updater = new \OC\Updater(
|
$updater = new \OC\Updater(
|
||||||
\OC::$server->getHTTPHelper(),
|
\OC::$server->getHTTPHelper(),
|
||||||
$config,
|
\OC::$server->getConfig(),
|
||||||
$logger
|
$logger
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($config->getSystemValue('update.skip-migration-test', false)) {
|
|
||||||
$eventSource->send('success', (string)$l->t('Migration tests are skipped - "update.skip-migration-test" is activated in config.php'));
|
|
||||||
$updater->setSimulateStepEnabled(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
$incompatibleApps = [];
|
$incompatibleApps = [];
|
||||||
$disabledThirdPartyApps = [];
|
$disabledThirdPartyApps = [];
|
||||||
|
|
||||||
|
|
|
@ -96,12 +96,6 @@ class Upgrade extends Command {
|
||||||
$updateStepEnabled = true;
|
$updateStepEnabled = true;
|
||||||
$skip3rdPartyAppsDisable = false;
|
$skip3rdPartyAppsDisable = false;
|
||||||
|
|
||||||
if ($this->config->getSystemValue('update.skip-migration-test', false)) {
|
|
||||||
$output->writeln(
|
|
||||||
'<info>"skip-migration-test" is activated via config.php</info>'
|
|
||||||
);
|
|
||||||
$simulateStepEnabled = false;
|
|
||||||
}
|
|
||||||
if ($input->getOption('skip-migration-test')) {
|
if ($input->getOption('skip-migration-test')) {
|
||||||
$simulateStepEnabled = false;
|
$simulateStepEnabled = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue