Merge pull request 'metrics: Fix bug when running migrate on empty db' (#109) from lagertonne/fix-db-creation-with-metrics into testing
All checks were successful
/ test (push) Successful in 2m52s
/ deploy (push) Successful in 4m37s

This commit is contained in:
lagertonne 2024-12-26 19:52:28 +00:00
commit a2f7682c6f

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)