Merge pull request #45400 from nextcloud/temp-db-replica-loss-prevention

fix(db): Prevent data loss by temporarily disabling `db:convert-type`
This commit is contained in:
Andy Scherzinger 2024-05-22 19:00:16 +02:00 committed by GitHub
commit 2f8176f57b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -177,6 +177,13 @@ class ConvertType extends Command implements CompletionAwareInterface {
}
protected function execute(InputInterface $input, OutputInterface $output): int {
// WARNING:
// Leave in place until #45257 is addressed to prevent data loss (hopefully in time for the next maintenance release)
//
throw new \InvalidArgumentException(
'This command is temporarily disabled (until the next maintenance release).'
);
$this->validateInput($input, $output);
$this->readPassword($input, $output);