fix index validate_mappings for new nested object

This commit is contained in:
simon 2022-03-26 10:52:57 +07:00
parent 9537c388ab
commit a0ed88580f
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 4 additions and 3 deletions

View File

@ -54,14 +54,15 @@ class ElasticIndex:
def validate_mappings(self):
"""check if all mappings are as expected"""
expected_map = self.expected_map
now_map = self.details["mappings"]["properties"]
for key, value in expected_map.items():
for key, value in self.expected_map.items():
# nested
if list(value.keys()) == ["properties"]:
for key_n, value_n in value["properties"].items():
if key not in now_map:
print(key_n, value_n)
return True
if key_n not in now_map[key]["properties"].keys():
print(key_n, value_n)
return True