Frontmatter
| id | 7837 |
| title | Cleanup redundant awaits in self-healing example |
| state | Closed |
| labels | airefactoring |
| assignees | tobiu |
| createdAt | Nov 21, 2025, 10:14 AM |
| updatedAt | Nov 21, 2025, 10:16 AM |
| githubUrl | https://github.com/neomjs/neo/issues/7837 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Nov 21, 2025, 10:16 AM |
The
ai/examples/self-healing.mjsscript currently awaits bothLifecycleServiceandChromaManagerfor each service. With the recent refactoring (issue #7836),ChromaManager.ready()is sufficient as it ensures the lifecycle service is ready. This task removes the redundant calls.