No doc type for stories on docker, which uses elasdticsearch 7, which no longer supports doc types. Prod still needs them because it's on ES 1.7.

This commit is contained in:
Samuel Clay 2021-04-27 20:55:20 -04:00
parent 34c9ee712c
commit 414d09c9b0

View file

@ -440,6 +440,8 @@ class SearchFeed:
@classmethod
def doc_type(cls):
if settings.DOCKERBUILD:
return None
return "%s-type" % cls.name
@classmethod