feat(FN-1921): merge fusion/fn-1921

This commit is contained in:
gsxdsm
2026-04-16 11:08:06 -07:00
parent 74b4d20c45
commit 4e602d8d90
7 changed files with 198 additions and 71 deletions

View File

@@ -0,0 +1,5 @@
---
"@gsxdsm/fusion": patch
---
Fix blocking/synchronous filesystem calls in dashboard server route handlers. Converted `existsSync`, `statSync`, `readFileSync`, `mkdirSync`, `readdirSync`, and `rmSync` calls to async `fs/promises` equivalents in request handlers to prevent blocking the Node event loop. Added documentation comments for startup-time sync calls in terminal-service.ts and github-webhooks.ts.