loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request '[BUG] Use correct format for attr-check error log' (#2866) from gusted/forgejo-error-fix into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2866
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>

+1 -1
+1 -1
modules/git/repo_attribute.go
··· 268 268 if err != nil && // If there is an error we need to return but: 269 269 cmd.parentContext.Err() != err && // 1. Ignore the context error if the context is cancelled or exceeds the deadline (RunWithContext could return c.ctx.Err() which is Canceled or DeadlineExceeded) 270 270 err.Error() != "signal: killed" { // 2. We should not pass up errors due to the program being killed 271 - log.Error("failed to run attr-check. Error: %w\nStderr: %s", err, stdErr.String()) 271 + log.Error("failed to run attr-check. Error: %v\nStderr: %s", err, stdErr.String()) 272 272 } 273 273 }() 274 274