feat: update chunked upload endpoints and enhance upload resilience with improved logging and HMAC validation

This commit is contained in:
2025-07-17 19:09:22 +02:00
parent 59679edbce
commit dc88f9f6fb
18 changed files with 181 additions and 43 deletions

View File

@ -603,11 +603,6 @@ func setupRouter() *http.ServeMux {
log.Info("HTTP router configured successfully with full protocol support (v, v2, token, v3)")
// Enhance router with network resilience features (non-intrusive)
if conf.Uploads.ChunkedUploadsEnabled {
EnhanceExistingRouter(mux)
}
return mux
}