err!=nil check

This commit is contained in:
Josh Yan 2024-06-20 09:30:59 -07:00
parent 4ebb66c662
commit 662568d453

View file

@ -84,16 +84,20 @@ func cleanupTmpDirs() {
} }
pid, err := strconv.Atoi(string(raw)) pid, err := strconv.Atoi(string(raw))
if err == nil { if err != nil {
if proc, err := os.FindProcess(pid); err == nil && !errors.Is(proc.Signal(syscall.Signal(0)), os.ErrProcessDone) { slog.Warn("failed to parse pid", "path", d, "error", err)
continue
}
proc, err := os.FindProcess(pid)
if err == nil && !errors.Is(proc.Signal(syscall.Signal(0)), os.ErrProcessDone) {
slog.Warn("found running ollama", "pid", pid, "path", d)
// Another running ollama, ignore this tmpdir // Another running ollama, ignore this tmpdir
continue continue
} }
}
err = os.RemoveAll(d) if err := os.Remove(d); err != nil {
if err != nil { slog.Warn("unable to cleanup stale tmpdir", "path", d, "error", err)
slog.Debug("unable to cleanup stale tmpdir", "path", d, "error", err)
} }
} }
} }