diff options
author | Brion Vibber <brion@pobox.com> | 2010-05-04 18:43:32 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-05-04 18:43:32 -0700 |
commit | bb94b78e8997ba1b66ddde7ad46653bfa6f958e6 (patch) | |
tree | 0a5084f85db301a3bd8f3f570400af731f2fe99e /lib/default.php | |
parent | 5f5d9518bdc5daec5a9250a852777d3015856c78 (diff) |
Handle timeout more gracefully in background pings
Added a 2-second default timeout for XMLRPC/extended pings, configurable as [ping,timeout].
No longer repeating the entire ping section if we had an HTTP error during a submission.
For now, dropping the bad item and continuing on with others. (Todo: individual retry and cleaner discards of blacklisted broken-for-now sites.)
Diffstat (limited to 'lib/default.php')
-rw-r--r-- | lib/default.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/default.php b/lib/default.php index fa4ece10a..ab5f294de 100644 --- a/lib/default.php +++ b/lib/default.php @@ -188,7 +188,8 @@ $default = 'cache' => array('base' => null), 'ping' => - array('notify' => array()), + array('notify' => array(), + 'timeout' => 2), 'inboxes' => array('enabled' => true), # ignored after 0.9.x 'newuser' => |