Delete displayed-attributes when init search

This commit is contained in:
Tanner Collin 2020-08-14 03:56:47 +00:00
parent 0e086b60b8
commit 4727d34eb6

View File

@ -40,6 +40,10 @@ def update_attributes():
if r.status_code != 202: if r.status_code != 202:
raise Exception('Bad response code ' + str(r.status_code)) raise Exception('Bad response code ' + str(r.status_code))
return r.json() return r.json()
r = requests.delete(MEILI_URL + 'indexes/qotnews/settings/displayed-attributes', timeout=2)
if r.status_code != 202:
raise Exception('Bad response code ' + str(r.status_code))
return r.json()
except KeyboardInterrupt: except KeyboardInterrupt:
raise raise
except BaseException as e: except BaseException as e: