Make sure that _id field is present in redis MQ

This commit is contained in:
simon987 2022-01-27 11:06:52 -05:00
parent 428c82bcfd
commit 62e74ed292
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ class RedisMQ(MessageQueue):
task_json = orjson.loads(task)
topic = topic.decode()
if "_id" not in task_json:
if "_id" not in task_json or not task_json["_id"]:
raise ValueError(f"Task doesn't have _id field: {task}")
# Immediately put in pending queue

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.71",
version="1.72",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",