Compare commits

...

1 commit

Author SHA1 Message Date
8bdf9e1c8a metrics: Fix bug when running migrate on empty db
All checks were successful
/ test (push) Successful in 3m5s
/ test (pull_request) Successful in 2m45s
2024-12-26 20:40:25 +01:00

View file

@ -32,4 +32,7 @@ class ItemCountCollector(object):
yield counter yield counter
REGISTRY.register(ItemCountCollector()) try:
REGISTRY.register(ItemCountCollector())
except Exception as e:
print(e)