Function
Some checks are pending
gl/check check status: pending (2dbeaff11318d4fcbc34c96c43f9a7dcd149e2dc)

This commit is contained in:
SebastianGode 2023-06-23 11:55:06 +02:00
parent 7e6a69ad28
commit 2dbeaff113

View File

@ -88,6 +88,10 @@ def main():
data=data
)
def filter_docs(metadata):
allowed_types = ["umn", "api-ref", "dev"]
metadata['docs'] = [doc for doc in metadata['docs'] if doc['type'] in allowed_types]
return metadata
def getData(environment, all_doc_types):
metadatadata = metadata.service_types_with_doc_types(
@ -95,11 +99,9 @@ def getData(environment, all_doc_types):
)
print(all_doc_types)
if not all_doc_types:
for i, doc in enumerate(metadatadata["docs"], 0):
if doc["type"] not in ["umn", "api-ref", "dev"]:
metadatadata["docs"].pop(i)
print(metadatadata)
return metadatadata
final_data = filter_docs(metadatadata)
print(final_data)
return final_data
def indexData(deleteIndex, hosts, index, username, password, data):