[PRIME-24] fix: update live server aio build path#7911
Conversation
|
Linked to Plane Work Item(s) This comment was auto-generated by Plane |
There was a problem hiding this comment.
Pull Request Overview
Updates the supervisor configuration for the live server to fix the build path, changing from a relative path to an absolute path and updating the server entry point.
- Updated the live server command to use absolute path
/app/live/dist/start.js - Removed the separate directory configuration line
- Simplified the supervisor configuration by consolidating path information into the command
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
Note Other AI code review bot(s) detectedCodeRabbit has detected other AI code review bot(s) in this pull request and will avoid duplicating their findings in the review comments. This may lead to a less comprehensive review. WalkthroughUpdated the Supervisor [program:live] entry: removed the Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Supervisor
participant LiveNode as Live Service (node)
participant FS as Filesystem
Note over Supervisor,LiveNode: Startup now uses absolute path: node /app/live/apps/live/dist/start.js
Supervisor->>FS: Read supervisor.conf (program:live)
Supervisor->>LiveNode: Exec "node /app/live/apps/live/dist/start.js"
LiveNode->>FS: Write stdout/stderr logs
alt Process exits/crashes
Supervisor->>LiveNode: Autorestart per config
else Running
LiveNode-->>Supervisor: Running
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Description
Update live server aio build path
Type of Change
Summary by CodeRabbit