fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
bc0deae
)
fix error messages about missing snippet files
author
Jan Szejko
<janek37@gmail.com>
Fri, 30 Jun 2017 14:54:41 +0000
(16:54 +0200)
committer
Jan Szejko
<janek37@gmail.com>
Fri, 30 Jun 2017 14:54:41 +0000
(16:54 +0200)
src/search/index.py
patch
|
blob
|
history
diff --git
a/src/search/index.py
b/src/search/index.py
index
ffad257
..
c84841b
100644
(file)
--- a/
src/search/index.py
+++ b/
src/search/index.py
@@
-139,7
+139,6
@@
class Index(SolrIndex):
else:
return False
else:
return False
- # WTF
def index_tags(self, *tags, **kw):
"""
Re-index global tag list.
def index_tags(self, *tags, **kw):
"""
Re-index global tag list.
@@
-828,7
+827,9
@@
class Search(SolrIndex):
idx += 1
except IOError, e:
idx += 1
except IOError, e:
- log.error("Cannot open snippet file for book id = %d [rev=%s], %s" % (book_id, revision, e))
+ book = catalogue.models.Book.objects.get(id=book_id)
+ if not book.children.exists():
+ log.error("Cannot open snippet file for book id = %d [rev=%s], %s" % (book_id, revision, e))
return []
finally:
snippets.close()
return []
finally:
snippets.close()