Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2021-02-19 21:31:07 +0300
committerGitHub <noreply@github.com>2021-02-19 21:31:07 +0300
commitbbaea5e2a097f728cb5e6a4222b8dbd44c1d0b73 (patch)
tree2052fb64a8af806ff09e751277e9882a58fe55c4 /plugins
parent8a2b6425bbaa24558a692b7af02375d108a23b25 (diff)
Fix force-report parameter for core:archive (#17236)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreConsole/Commands/CoreArchiver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreConsole/Commands/CoreArchiver.php b/plugins/CoreConsole/Commands/CoreArchiver.php
index b33396460c..1b78f5d5fb 100644
--- a/plugins/CoreConsole/Commands/CoreArchiver.php
+++ b/plugins/CoreConsole/Commands/CoreArchiver.php
@@ -110,6 +110,6 @@ class CoreArchiver extends ConsoleCommand
. "useful if you specified --url=https://... or if you are using Piwik with force_ssl=1");
$command->addOption('php-cli-options', null, InputOption::VALUE_OPTIONAL, 'Forwards the PHP configuration options to the PHP CLI command. For example "-d memory_limit=8G". Note: These options are only applied if the archiver actually uses CLI and not HTTP.', $default = '');
$command->addOption('force-all-websites', null, InputOption::VALUE_NONE, 'Force archiving all websites.');
- $command->addOption('force-report', null, InputOption::VALUE_NONE, 'If specified, only processes invalidations for a specific report in a specific plugin. Value must be in the format of "MyPlugin.myReport".');
+ $command->addOption('force-report', null, InputOption::VALUE_OPTIONAL, 'If specified, only processes invalidations for a specific report in a specific plugin. Value must be in the format of "MyPlugin.myReport".');
}
}