When Twitter bridge encounters a 403 (rate limit) err, drop the notice

instead of requeuing.
This commit is contained in:
Zach Copley 2010-01-13 19:15:54 +00:00
parent 7aa43f3c93
commit da5e6a6023

View File

@ -269,19 +269,23 @@ function process_error($e, $flink, $notice)
common_log(LOG_WARNING, $logmsg);
if ($code == 401) {
switch($code) {
case 401:
// Probably a revoked or otherwise bad access token - nuke!
remove_twitter_link($flink);
return true;
} else {
break;
case 403:
// User has exceeder her rate limit -- toss the notice
return true;
break;
default:
// For every other case, it's probably some flakiness so try
// sending the notice again later (requeue).
return false;
break;
}
}