bug: stale PID file prevents cobot restart after crash/kill #136
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Competitor
Kind/Documentation
Kind/Enhancement
Kind/Epic
Kind/Feature
Kind/Security
Kind/Story
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Scope/Core
Scope/Cross-Plugin
Scope/Plugin-System
Scope/Single-Plugin
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
ultanio/cobot#136
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Bug
When cobot is killed (SIGKILL, crash, or system restart), the PID file at
~/.cobot/cobot.pidis not cleaned up. On next start, cobot sees the stale PID and refuses to start:Steps to Reproduce
kill -9or let it crashrm ~/.cobot/cobot.pidExpected
Cobot should check if the PID in the file is actually alive (
kill -0) before refusing to start. If the process is dead, remove the stale PID file and proceed.