mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Fetch timeout should be a float, not an integer
This commit is contained in:
parent
9120d3b3e3
commit
970731073d
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ class Conf {
|
|||
public $serviceQueueWidth = 5;
|
||||
|
||||
/** @var \DateInterval Number of seconds to wait for data when fetching feeds from foreign servers */
|
||||
public $fetchTimeout = 10;
|
||||
public $fetchTimeout = 10.0;
|
||||
/** @var integer Maximum size, in bytes, of data when fetching feeds from foreign servers */
|
||||
public $fetchSizeLimit = 2 * 1024 * 1024;
|
||||
/** @var boolean Whether to allow the possibility of fetching full article contents using an item's URL. Whether fetching will actually happen is also governed by a per-feed setting */
|
||||
|
|
Loading…
Reference in a new issue