Use dual delivery when dealing with flaky hub, reduce poll to once/hour

This commit is contained in:
Mike Macgirvin 2010-10-10 21:08:25 -07:00
parent 70bd7a6509
commit dcb7bc5e71
1 changed files with 8 additions and 1 deletions

View File

@ -30,7 +30,7 @@
foreach($contacts as $contact) {
if($contact['priority']) {
if($contact['priority'] || $contact['subhub']) {
$update = false;
$t = $contact['last-update'];
@ -54,6 +54,13 @@
break;
case 1:
default:
// if pubsub delivery is in effect, poll no more than once every hour.
// We shouldn't need to poll at all with pubsub, but the hub isn't
// always the most reliable postmaster... This way we still get the
// messages when the hub goes flaky, just perhaps a bit slower.
// At least it doesn't hurt to get them twice.
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
$update = true;
break;