diff options
author | Brion Vibber <brion@pobox.com> | 2009-12-01 14:38:34 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-12-01 14:50:18 -0800 |
commit | 15a9c869794ea3948086afa5310696e1250d9a26 (patch) | |
tree | 2e4cd2281ed778082157437890d556846b66f74b /lib/default.php | |
parent | 8b63717bf9828a4219578d05ce8eeb59616fde7d (diff) |
Ticket 2048: make OMB posting HTTP timeout configurable as $config['omb']['timeout']; defaults to 5 seconds instead of 20-second default in Yadis library
Diffstat (limited to 'lib/default.php')
-rw-r--r-- | lib/default.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/default.php b/lib/default.php index 95366e0b3..d4ef045ea 100644 --- a/lib/default.php +++ b/lib/default.php @@ -226,4 +226,6 @@ $default = array('contentlimit' => null), 'location' => array('namespace' => 1), // 1 = geonames, 2 = Yahoo Where on Earth + 'omb' => + array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates ); |