From 136f9a401663ecd80923046c680b770c6ab68207 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 30 Aug 2008 03:01:35 -0400 Subject: don't clear old claims darcs-hash:20080830070135-84dde-dc0cfc8e23c31c33617aa167f7c97d443b10539d.gz --- scripts/xmppconfirmhandler.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'scripts/xmppconfirmhandler.php') diff --git a/scripts/xmppconfirmhandler.php b/scripts/xmppconfirmhandler.php index 5c45f8c60..b6c1ee7a4 100755 --- a/scripts/xmppconfirmhandler.php +++ b/scripts/xmppconfirmhandler.php @@ -53,7 +53,6 @@ class XmppConfirmHandler { function handle_queue() { $this->log(LOG_INFO, 'checking for queued confirmations'); - $cnt = 0; do { $confirm = $this->next_confirm(); if ($confirm) { @@ -82,9 +81,8 @@ class XmppConfirmHandler { continue; } } - $cnt++; } else { - $this->clear_old_confirm_claims(); +# $this->clear_old_confirm_claims(); sleep(10); } } while (true); @@ -102,7 +100,7 @@ class XmppConfirmHandler { $this->log(LOG_INFO, 'Claiming confirmation for ' . $confirm->address); # working around some weird DB_DataObject behaviour $confirm->whereAdd(''); # clears where stuff - $original = clone($confirm); + $original = clone($confirm); $confirm->claimed = common_sql_now(); $result = $confirm->update($original); if ($result) { @@ -118,7 +116,7 @@ class XmppConfirmHandler { function clear_old_confirm_claims() { $confirm = new Confirm(); - $confirm->claimed = NULL; + $confirm->claimed = NULL; $confirm->whereAdd('now() - claimed > '.CLAIM_TIMEOUT); $confirm->update(DB_DATAOBJECT_WHEREADD_ONLY); } -- cgit v1.2.3-54-g00ecf