infra: fix mongodb uuid encoding + combined DAG honors rows conf

This commit is contained in:
mo
2026-06-26 08:41:44 +00:00
parent 897ccaa9f3
commit 9cbdccb403
3 changed files with 166 additions and 1 deletions
@@ -28,7 +28,7 @@ SOURCES = ["ERP", "WMS", "CRM", "SCM", "TMS"]
def generate_fake_event():
"""Generate a single fake event"""
event_id = uuid.uuid4()
event_id = str(uuid.uuid4())
event_type = random.choice(EVENT_TYPES)
region = random.choice(REGIONS)
source = random.choice(SOURCES)