Log snapshot listing failures
This commit is contained in:
@@ -26,9 +26,11 @@ type Server struct {
|
||||
}
|
||||
|
||||
var Version = "dev"
|
||||
var apiErrorLog *slog.Logger
|
||||
|
||||
func New(socket string, svc *service.Service, log *slog.Logger) *Server {
|
||||
s := &Server{service: svc, log: log, socket: socket}
|
||||
apiErrorLog = log
|
||||
mux := http.NewServeMux()
|
||||
mux.HandleFunc("GET /v1/health", s.health)
|
||||
mux.HandleFunc("GET /v1/config", s.getConfig)
|
||||
@@ -55,7 +57,7 @@ func New(socket string, svc *service.Service, log *slog.Logger) *Server {
|
||||
mux.HandleFunc("GET /v1/repositories/{id}/snapshots", s.snapshots)
|
||||
mux.HandleFunc("GET /v1/repositories/{id}/snapshots/{snapshot}/files", s.snapshotFiles)
|
||||
mux.HandleFunc("POST /v1/restores", s.restore)
|
||||
s.http = &http.Server{Handler: requestLog(log, mux), ReadHeaderTimeout: 5 * time.Second, ReadTimeout: 30 * time.Second, WriteTimeout: 5 * time.Minute, IdleTimeout: 30 * time.Second}
|
||||
s.http = &http.Server{Handler: requestLog(log, mux), ReadHeaderTimeout: 5 * time.Second, ReadTimeout: 30 * time.Second, WriteTimeout: 25 * time.Minute, IdleTimeout: 30 * time.Second}
|
||||
return s
|
||||
}
|
||||
|
||||
@@ -321,6 +323,9 @@ func writeError(w http.ResponseWriter, err error) {
|
||||
if strings.Contains(message, "already queued") {
|
||||
status = 409
|
||||
}
|
||||
if apiErrorLog != nil {
|
||||
apiErrorLog.Warn("api error", "status", status, "error", message)
|
||||
}
|
||||
writeJSON(w, status, map[string]string{"error": message})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user