Temporary search problem workaround.
authorRadek Czajka <rczajka@rczajka.pl>
Mon, 17 Jun 2019 13:32:28 +0000 (15:32 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Mon, 17 Jun 2019 13:32:28 +0000 (15:32 +0200)
src/search/index.py

index 9f87b99..bd31a2a 100644 (file)
@@ -142,7 +142,8 @@ class Index(SolrIndex):
                     uids.add(res['uid'])
                 st += rows
         if uids:
-            self.index.delete(uids)
+            # FIXME: With Solr API change, this doesn't work.
+            #self.index.delete(uids)
             return True
         else:
             return False