Fix event handler signature to async def handler(event_data, context)

This commit is contained in:
root
2025-10-24 00:38:12 +00:00
parent d18187f3aa
commit f6bcbe664c
2 changed files with 4 additions and 3 deletions

View File

@@ -12,7 +12,8 @@ config = {
'flows': ['advoware']
}
async def handler(req, context):
async def handler(req):
context = req.context
try:
# Konfiguration aus Request-Body
body = req.get('body', {})