fix(ops): render_status — body_state informational only, not gate #1974

Open
agent-pm wants to merge 5 commits from fix/render-status-body-state into main
+1 -1
View File
@@ -859,7 +859,7 @@ def render_status(
if len(missing_body) > 3:
shown += f", +{len(missing_body) - 3}"
desc_parts.append(f"body-unfilled: {shown}")
state = "success" if not missing and not missing_body else "failure"
state = "success" if not missing else "failure"
return state, "".join(desc_parts)