DEV: Don't warn when trying to reindex a post with a deleted topic.

This commit is contained in:
Guo Xiang Tan 2019-04-01 17:03:53 +08:00
parent 541a15e357
commit 3cba10b9ca
1 changed files with 0 additions and 2 deletions

View File

@ -149,8 +149,6 @@ class SearchIndexer
if topic
SearchIndexer.update_posts_index(obj.id, topic.title, category_name, tag_names, obj.cooked)
SearchIndexer.update_topics_index(topic.id, topic.title, obj.cooked) if obj.is_first_post?
else
Rails.logger.warn("Orphan post skipped in search_indexer, topic_id: #{obj.topic_id} post_id: #{obj.id} raw: #{obj.raw}")
end
end