You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
Feature description
Currently, clai.sh starts the server as a background process. This becomes an issue when attempting to uninstall the program, the processes are not shutdown but instead the source code directory is removed. This leaves the processes as zombies. To properly handle running the processes we can create a Daemon class that records the PID on startup. The PID can then be referenced later for shutting down.
Acceptance criteria
Clai uninstall no longer leaves the processes as zombies.
The text was updated successfully, but these errors were encountered:
Feature description
Currently, clai.sh starts the server as a background process. This becomes an issue when attempting to uninstall the program, the processes are not shutdown but instead the source code directory is removed. This leaves the processes as zombies. To properly handle running the processes we can create a Daemon class that records the PID on startup. The PID can then be referenced later for shutting down.
Acceptance criteria
The text was updated successfully, but these errors were encountered: