fix(FN-695): transition project status from initializing to active in addProject()

This commit is contained in:
gsxdsm
2026-04-02 10:45:28 -07:00
parent 93029ce009
commit a024190992

View File

@@ -183,6 +183,11 @@ export class ProjectManager extends EventEmitter<ProjectManagerEvents> {
updatedAt: new Date().toISOString(),
});
// Update project status from "initializing" to "active"
await this.centralCore.updateProject(project.id, {
status: "active",
});
// Store runtime
this.runtimes.set(config.projectId, runtime);