We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 418755b + 590e765 commit 3ea30b4Copy full SHA for 3ea30b4
1 file changed
core/Command/Maintenance/DataFingerprint.php
@@ -28,7 +28,9 @@ protected function configure() {
28
}
29
30
protected function execute(InputInterface $input, OutputInterface $output): int {
31
- $this->config->setSystemValue('data-fingerprint', md5($this->timeFactory->getTime()));
+ $fingerPrint = md5($this->timeFactory->getTime());
32
+ $this->config->setSystemValue('data-fingerprint', $fingerPrint);
33
+ $output->writeln('<info>Updated data-fingerprint to ' . $fingerPrint . '</info>');
34
return 0;
35
36
0 commit comments