Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-10-04 12:41:50 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-10-05 12:31:49 (GMT)
commite1e3c1623ca175830773667d7c2ecd84116cf23b (patch)
tree5b6dd9fb0e27145fc747f512157bbf1b30687ad2
parent0a3f610e67394b8364d3aba4c6028db31d155858 (diff)
Avoid indexing launch-times property
Signed-off-by: Walter Bender <walter.bender@gmail.com> Tested-by: Gonzalo Odiard <gonzalo@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
-rw-r--r--src/carquinyol/indexstore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/carquinyol/indexstore.py b/src/carquinyol/indexstore.py
index dc721e7..19fe901 100644
--- a/src/carquinyol/indexstore.py
+++ b/src/carquinyol/indexstore.py
@@ -46,7 +46,7 @@ _FLUSH_THRESHOLD = 20
# Force a flush after _n_ seconds since the last change to the db
_FLUSH_TIMEOUT = 5
-_PROPERTIES_NOT_TO_INDEX = ['timestamp', 'preview']
+_PROPERTIES_NOT_TO_INDEX = ['timestamp', 'preview', 'launch-times']
_MAX_RESULTS = int(2 ** 31 - 1)