Hi, On Wed, Jun 26, 2013 at 2:53 AM, Pouria M <[email protected]> wrote: > Hi Bruno, > > Many thanks for this great piece of work. > > Quick question, do you happen to have any insights on this error : > django_push.subscriber.models.SubscriptionError: (u'Error during request to > hub http://pubsubhubbub.appspot.com/ for topic > http://www.google.com/alerts/feeds/05832877593755415093/5556440571894111478: > Bad response code 302', <Subscription: > http://www.google.com/alerts/feeds/05832877593755415093/5556440571894111478: > http://pubsubhubbub.appspot.com/>, <Response [409]>)
It means the hub returned an HTTP 409 response with "Bad response code 302" as content. There probably was a problem while verifying the subscription. Maybe try debugging it with https://pubsubhubbub.appspot.com/subscribe. SubscriptionError is raised whenever the hub doesn't return 202 or 204 for the subscription request. Then it's up to your code to decide what to do with the failed subscription: delete it, retry later, etc. Bruno -- --- You received this message because you are subscribed to the Google Groups "Pubsubhubbub" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
