Skip to content

Commit 682b587

Browse files
Merge branch '6.4' into 7.3
* 6.4: use false instead of null to hide the currency symbol [FrameworkBundle] Fix block type from `OK` to `ERROR` when local vault is disabled in `SecretsRemoveCommand` Fix wrong boolean values [Messenger] Fix NoAutoAckStamp handling in Worker::flush()
2 parents 8cadde1 + 3d7b6e3 commit 682b587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/SecretsRemoveCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
5959
$vault = $input->getOption('local') ? $this->localVault : $this->vault;
6060

6161
if (null === $vault) {
62-
$io->success('The local vault is disabled.');
62+
$io->error('The local vault is disabled.');
6363

6464
return 1;
6565
}

0 commit comments

Comments
 (0)