Commit ba26c7aa authored by Mark Ward's avatar Mark Ward
Browse files

it will always return an error due to Kill() discarding Wait() errors

parent 63c76368
...@@ -903,9 +903,7 @@ func (s *llmServer) Close() error { ...@@ -903,9 +903,7 @@ func (s *llmServer) Close() error {
return err return err
} }
if err := s.cmd.Wait(); err != nil { _ = s.cmd.Wait()
return err
}
slog.Debug("llama server stopped") slog.Debug("llama server stopped")
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment