mirror of
https://github.com/nextcloud/server.git
synced 2026-03-03 14:01:34 -05:00
Merge pull request #49589 from nextcloud/backport/49587/stable28
[stable28] fix(maintenance): Show a success message on data-fingerprint command
This commit is contained in:
commit
5719fa9e76
1 changed files with 3 additions and 1 deletions
|
|
@ -43,7 +43,9 @@ class DataFingerprint extends Command {
|
|||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||
$this->config->setSystemValue('data-fingerprint', md5($this->timeFactory->getTime()));
|
||||
$fingerPrint = md5($this->timeFactory->getTime());
|
||||
$this->config->setSystemValue('data-fingerprint', $fingerPrint);
|
||||
$output->writeln('<info>Updated data-fingerprint to ' . $fingerPrint . '</info>');
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue