Fix TaskBeat: add agent_subtask/standup/broadcast to processing whitelist
This commit is contained in:
parent
003e591a04
commit
01858b5fc6
1 changed files with 1 additions and 1 deletions
2
app.py
2
app.py
|
|
@ -2049,7 +2049,7 @@ def process_beat_tasks():
|
|||
# Konvertiere zu Dict-Format für Legacy-Kompatibilität
|
||||
pending_tasks = []
|
||||
for db_task in db_tasks:
|
||||
if db_task.get('type') in ('agent_created', 'manual', 'orchestrated', 'agent_delegated', 'telegram'):
|
||||
if db_task.get('type') in ('agent_created', 'manual', 'orchestrated', 'agent_delegated', 'telegram', 'agent_subtask', 'standup', 'broadcast'):
|
||||
pending_tasks.append(db_task)
|
||||
|
||||
for task in pending_tasks:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue