Skip to content

Commit

Permalink
Fix wrong type of http_connect_timeout|http_timeout options (#721)
Browse files Browse the repository at this point in the history
Co-authored-by: Gabriel Ostrolucký <[email protected]>
  • Loading branch information
ostrolucky and ostrolucky committed May 22, 2023
1 parent 2fa1f8e commit a39c362
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@ public function getConfigTreeBuilder(): TreeBuilder
->booleanNode('send_default_pii')->end()
->integerNode('max_value_length')->min(0)->end()
->scalarNode('http_proxy')->end()
->integerNode('http_connect_timeout')
->floatNode('http_connect_timeout')
->min(0)
->info('The maximum number of seconds to wait while trying to connect to a server. It works only when using the default transport.')
->end()
->integerNode('http_timeout')
->floatNode('http_timeout')
->min(0)
->info('The maximum execution time for the request+response as a whole. It works only when using the default transport.')
->end()
Expand Down

0 comments on commit a39c362

Please sign in to comment.