Fix/queue configurations (#585)

* Fix config-svc startup dupe CLI args

* Fix missing params on collection service

* Fix collection management handling
This commit is contained in:
cybermaggedon 2025-12-06 14:54:47 +00:00 committed by GitHub
parent ba95fa226b
commit 39f6a8b940
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 59 additions and 63 deletions

View file

@ -41,9 +41,7 @@ class Collection:
collection = v["collection"],
name = v["name"],
description = v["description"],
tags = v["tags"],
created_at = v["created_at"],
updated_at = v["updated_at"]
tags = v["tags"]
)
for v in collections
]
@ -76,9 +74,7 @@ class Collection:
collection = v["collection"],
name = v["name"],
description = v["description"],
tags = v["tags"],
created_at = v["created_at"],
updated_at = v["updated_at"]
tags = v["tags"]
)
return None
except Exception as e:

View file

@ -49,8 +49,6 @@ class CollectionMetadata:
name : str
description : str
tags : List[str]
created_at : str
updated_at : str
# Streaming chunk types