mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
fix(maintenance): Show a success message on data-fingerprint command
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
c3b336dbf9
commit
d1c3c6f234
1 changed files with 3 additions and 1 deletions
|
|
@ -28,7 +28,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