We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5291f commit ca8565bCopy full SHA for ca8565b
plugins/RSS/plugin.py
@@ -364,6 +364,11 @@ def update_feed(self, feed):
364
feed.url, e)
365
feed.last_exception = e
366
return
367
+ except http.client.HTTPException as e:
368
+ self.log.warning("HTTP error while fetching <%s>: %s",
369
+ feed.url, e)
370
+ feed.last_exception = e
371
+ return
372
except Exception as e:
373
self.log.error("Failed to fetch <%s>: %s", feed.url, e)
374
raise # reraise so @log.firewall prints the traceback
0 commit comments