diff options
Diffstat (limited to 'tvix/nar-bridge/pkg/server/narinfo_get.go')
-rw-r--r-- | tvix/nar-bridge/pkg/server/narinfo_get.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/nar-bridge/pkg/server/narinfo_get.go b/tvix/nar-bridge/pkg/server/narinfo_get.go index 977e1136130f..ec850670b40d 100644 --- a/tvix/nar-bridge/pkg/server/narinfo_get.go +++ b/tvix/nar-bridge/pkg/server/narinfo_get.go @@ -135,10 +135,10 @@ func registerNarinfoGet(s *Server) { err = renderNarinfo(ctx, log, s.pathInfoServiceClient, &s.narHashToPathInfoMu, s.narHashToPathInfo, outputHash, w, false) if err != nil { - log.WithError(err).Info("unable to render narinfo") if errors.Is(err, fs.ErrNotExist) { w.WriteHeader(http.StatusNotFound) } else { + log.WithError(err).Warn("unable to render narinfo") w.WriteHeader(http.StatusInternalServerError) } } |