修复了一个project_detail_data create失败报错的问题

This commit is contained in:
strepsiades
2026-03-31 15:54:12 +08:00
parent f0ce8dc37e
commit eb02fd32a5
3 changed files with 59 additions and 3 deletions
@@ -207,7 +207,16 @@ class ProjectDetailApiHandler(BaseApiHandler):
self._mark_approval_snapshot_synced(node)
except Exception as e:
self._pending_push_context.pop(push_id, None)
results.append(TaskResult.failed(node_id=node.node_id, error=str(e)))
results.append(
TaskResult.failed(
node_id=node.node_id,
error=str(e),
push_id=push_id,
biz_id=biz_id,
key=str(key),
project_id=str(project_id),
)
)
return results