You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zeripath 93ab90743d
Prevent loop if there is an error in GetNotificationCount (#19799)
If the context is cancelled `.NotificationUnreadCount` in a template can
cause an infinite loop with `ctx.ServerError()` being called, which
creates a template that then calls `.NotificationUnreadCount` calling
`GetNotificationCount()` with the cancelled context resulting in an
error that calls `ctx.ServerError`... and so on...

This PR simply stops calling `ctx.ServerError` in the error handler code
for `.NotificationUnreadCount` as we have already started rendering and
so it is too late to call `ctx.ServerError`. Additionally we skip
logging the error if it's a context cancelled error.

Fix #19793

Signed-off-by: Andrew Thornton <art27@cantab.net>

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
2 years ago
..
setting Prevent NPE when cache service is disabled (#19703) 2 years ago
avatar.go Move almost all functions' parameter db.Engine to context.Context (#19748) 2 years ago
home.go Move almost all functions' parameter db.Engine to context.Context (#19748) 2 years ago
home_test.go Renamed ctx.User to ctx.Doer. (#19161) 2 years ago
main_test.go Use a struct as test options (#19393) 2 years ago
notification.go Prevent loop if there is an error in GetNotificationCount (#19799) 2 years ago
package.go Move access and repo permission to models/perm/access (#19350) 2 years ago
profile.go Move almost all functions' parameter db.Engine to context.Context (#19748) 2 years ago
search.go Never use /api/v1 from Gitea UI Pages (#19318) 2 years ago
stop_watch.go Never use /api/v1 from Gitea UI Pages (#19318) 2 years ago
task.go Renamed ctx.User to ctx.Doer. (#19161) 2 years ago