pidfile
pidfile copied to clipboard
Simple library to create a PID locking file for processes which need to worry about that sort of thing
Results
2
pidfile issues
Sort by
recently updated
recently updated
newest added
` def remove_pidfile File.unlink(self.pidpath) if self.pidfile_exists? end ` No such file or directory @ unlink_internal - /tmp/a.pid Looks like this is a race, and the pidfile disappears right after the...
If a path is not passed to PidFile.pid then use the default pidfile path. Without this PidFile.pid fails as it attempts to read from a nil file path.