diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-10-27 21:25:11 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-10-27 21:25:11 +0100 |
commit | 3b249f19677996cf0b83e82b663b09254160898e (patch) | |
tree | b73f9ce50e55d59ef92ffd405a0713b14b725add /core/command | |
parent | 588a668455536a576bfe0b42ef61806dfeab61bc (diff) | |
download | nextcloud-server-3b249f19677996cf0b83e82b663b09254160898e.tar.gz nextcloud-server-3b249f19677996cf0b83e82b663b09254160898e.zip |
Revert "setting to skip migration tests by default"
This reverts commit 7cbdd9b90bcea3566b7d0198f23da3d427e6ef45.
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/upgrade.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 9c313f83e14..d1a7c09c30c 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -96,12 +96,6 @@ class Upgrade extends Command { $updateStepEnabled = true; $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')) { $simulateStepEnabled = false; } |