You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Console/Application.php
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,7 @@ protected function getDefaultInputDefinition(): InputDefinition
114
114
$definition->addOption(newInputOption('--web-allow-insecure', null, InputOption::VALUE_NONE, 'If specified, verify_peer and verify_host are disabled (only for SymfonyHttpClient)'));
115
115
$definition->addOption(newInputOption('--web-basic-auth', null, InputOption::VALUE_OPTIONAL, 'If specified, used for basic authorization (only for SymfonyHttpClient)'));
116
116
$definition->addOption(newInputOption('--web-host', null, InputOption::VALUE_OPTIONAL, 'If specified, adds a Host header to web adapter request (only for SymfonyHttpClient)'));
117
+
$definition->addOption(newInputOption('--web-retry', null, InputOption::VALUE_REQUIRED, 'If specified, failed HTTP requests will be retried for the specified amount of times'));
117
118
$definition->addOption(newInputOption('--tmp-dir', '-t', InputOption::VALUE_REQUIRED, 'Temporary directory to write files to'));
118
119
$definition->addOption(newInputOption('--config', '-c', InputOption::VALUE_REQUIRED, 'If specified use this yaml configuration file'));
119
120
return$definition;
@@ -198,6 +199,7 @@ private function parseConfiguration(InputInterface $input)
0 commit comments