From d1c3c6f2341f8841d70b79c4e1d86384b60d1261 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 2 Dec 2024 08:40:25 +0100 Subject: fix(maintenance): Show a success message on data-fingerprint command Signed-off-by: Joas Schilling --- core/Command/Maintenance/DataFingerprint.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/Command/Maintenance/DataFingerprint.php b/core/Command/Maintenance/DataFingerprint.php index 15a427e2cc6..014d6c411a4 100644 --- a/core/Command/Maintenance/DataFingerprint.php +++ b/core/Command/Maintenance/DataFingerprint.php @@ -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('Updated data-fingerprint to ' . $fingerPrint . ''); return 0; } } -- cgit v1.2.3