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

@ -28,19 +28,17 @@ def list_collections(url, user, tag_filter):
collection.collection,
collection.name,
collection.description,
", ".join(collection.tags),
collection.created_at,
collection.updated_at
", ".join(collection.tags)
])
headers = ["Collection", "Name", "Description", "Tags", "Created", "Updated"]
headers = ["Collection", "Name", "Description", "Tags"]
print(tabulate.tabulate(
table,
headers=headers,
tablefmt="pretty",
stralign="left",
maxcolwidths=[20, 30, 50, 30, 19, 19],
maxcolwidths=[20, 30, 50, 30],
))
def main():