dependency updates

This commit is contained in:
msramalho
2023-12-13 19:06:02 +00:00
parent 496a3651e5
commit 3599ab2c19
2 changed files with 6 additions and 3 deletions

View File

@@ -74,6 +74,9 @@ def create_sheet_task(self, sheet_json: str):
stats = {"archived": 0, "failed": 0, "errors": []}
for result in orchestrator.feed():
if not result:
logger.error("Got empty result from feeder, an internal error must have occurred.")
continue
try:
insert_result_into_db(result, sheet.tags, sheet.public, sheet.group_id, sheet.author_id, models.generate_uuid())
stats["archived"] += 1