mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 11:42:24 -05:00
[feature/performance] Wrap incoming HTTP requests in timeout handler (#2353)
* deinterface router, start messing about with deadlines * weeeee * thanks linter (thinter) * write Connection: close when timing out requests * update wording * don't replace req * don't bother with fancy Cause functions (I'll use them one day...)
This commit is contained in:
parent
7753f42132
commit
8d0c017cf2
14 changed files with 305 additions and 175 deletions
|
|
@ -198,3 +198,14 @@ func NewErrorClientClosedRequest(original error) WithCode {
|
|||
code: StatusClientClosedRequest,
|
||||
}
|
||||
}
|
||||
|
||||
// NewErrorRequestTimeout returns an ErrorWithCode 408 with the given original error.
|
||||
// This error type should only be used when the server has decided to hang up a client
|
||||
// request after x amount of time, to avoid keeping extremely slow client requests open.
|
||||
func NewErrorRequestTimeout(original error) WithCode {
|
||||
return withCode{
|
||||
original: original,
|
||||
safe: errors.New(http.StatusText(http.StatusRequestTimeout)),
|
||||
code: http.StatusRequestTimeout,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue