[mirror] Scalable static site server for Git forges (like GitHub Pages)

Stabilize the `audit` feature.

Changed files
+1 -5
src
+1 -5
src/audit.go
··· 265 265 var _ Backend = (*auditedBackend)(nil) 266 266 267 267 func NewAuditedBackend(backend Backend) Backend { 268 - if config.Feature("audit") { 269 - return &auditedBackend{backend} 270 - } else { 271 - return backend 272 - } 268 + return &auditedBackend{backend} 273 269 } 274 270 275 271 // This function does not retry appending audit records; as such, if it returns an error,