From 86b78a97e384475504ce6845846e547f70c47693 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 24 Jul 2013 14:45:48 +0200 Subject: AsyncWriter is used to prevent whoosh.store.LockError error. And we only try to add new articles to the index. --- source/feedgetter.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'source/feedgetter.py') diff --git a/source/feedgetter.py b/source/feedgetter.py index bd9cacc9..a9f0b01c 100755 --- a/source/feedgetter.py +++ b/source/feedgetter.py @@ -178,12 +178,13 @@ class FeedGetter(object): articles.append(article) - # add the article to the Whoosh index - #search.add_to_index([article], feed) + if self.articles.get_articles(feed_id, article_id) == False: + # add the article to the Whoosh index + search.add_to_index([article], feed) - if conf.MAIL_ENABLED and feed["mail"] and self.articles.get_articles(feed_id, article_id) == False: - # if subscribed to the feed AND if article not already in the database - threading.Thread(None, utils.send_mail, None, (conf.mail_from, conf.mail_to, \ + if conf.MAIL_ENABLED and feed["mail"]: + # if subscribed to the feed + threading.Thread(None, utils.send_mail, None, (conf.mail_from, conf.mail_to, \ a_feed.feed.title, \ article_title, description)).start() self.articles.add_articles(articles, feed_id) -- cgit