I came across this bug in the reference implementation. I'm not on the
committers list, so here is the patch (how done one be a committer, by the
way?)

It happens when trying to record a new RSS feed that a format like:

*<channel>
   <title>some title</title>
    <link></link>*
*... etc..*


Notice the empty <link> tag. This causes the RecordFeedHandler to error out
and get into infinite task retries. The fix I implemented is in main.py
-> RecordFeedHandler -> post() ). Change from:

*        if feed_id is not None:*

to:

*        if feed_id:*


Regards,
Waleed

To unsubscribe from this group, send email to 
pubsubhubbub+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.

Reply via email to