mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
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:
commit
2f8176f57b
1 changed files with 7 additions and 0 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue