Skip to content

Commit

Permalink
Revert "[BUGFIX] Set HTTP timeout to 20 seconds"
Browse files Browse the repository at this point in the history
This reverts commit f49f871.

The change for issue #102606 has the potential to do more harm
than good. The initial intention was to define a HTTP timeout to
be lower than the PHP `max_execution_time`. Defining general
HTTP `timeout` of 20 seconds now also limits e.g. long running
CLI processes - which can be considered a breaking change.

Resolves: #102610
Reverts: #102606
Releases: main, 12.4
Change-Id: I601051b8d52c9064800075cd0f928f236373e9ef
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82140
Tested-by: Oliver Hader <oliver.hader@typo3.org>
Tested-by: core-ci <typo3@b13.com>
Reviewed-by: Oliver Hader <oliver.hader@typo3.org>
  • Loading branch information
ohader committed Dec 7, 2023
1 parent f4eeae7 commit 7350df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/core/Configuration/DefaultConfiguration.php
Expand Up @@ -1547,7 +1547,7 @@
'connect_timeout' => 10,
'proxy' => null,
'ssl_key' => null,
'timeout' => 20,
'timeout' => 0,
'verify' => true,
'version' => '1.1',
'handler' => [], // Array of callables
Expand Down

0 comments on commit 7350df5

Please sign in to comment.