forked from tanner/qotnews
Delete displayed-attributes when init search
This commit is contained in:
parent
0e086b60b8
commit
4727d34eb6
|
@ -40,6 +40,10 @@ def update_attributes():
|
|||
if r.status_code != 202:
|
||||
raise Exception('Bad response code ' + str(r.status_code))
|
||||
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:
|
||||
raise
|
||||
except BaseException as e:
|
||||
|
|
Loading…
Reference in New Issue
Block a user