fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Some refactoring & documentation changes in search.
[wolnelektury.git]
/
apps
/
catalogue
/
models.py
diff --git
a/apps/catalogue/models.py
b/apps/catalogue/models.py
index
670b667
..
0c35130
100644
(file)
--- a/
apps/catalogue/models.py
+++ b/
apps/catalogue/models.py
@@
-689,7
+689,7
@@
class Book(models.Model):
return result.wait()
def search_index(self, book_info=None):
- if settings.CELERY_ALWAYS_EAGER:
+ if
hasattr(settings, 'CELERY_ALWAYS_EAGER') and
settings.CELERY_ALWAYS_EAGER:
idx = search.ReusableIndex()
else:
idx = search.Index()