diff options
author | 2023-11-13 19:48:51 +0100 | |
---|---|---|
committer | 2023-11-13 19:48:51 +0100 | |
commit | 8d0c017cf205bcf57630c91b53079001deed4d36 (patch) | |
tree | cf2240e3dff137df2871c9b93548a885833e9a52 /testrig/router.go | |
parent | [chore] update otel -> v1.20.0 (#2358) (diff) | |
download | gotosocial-8d0c017cf205bcf57630c91b53079001deed4d36.tar.xz |
[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...)
Diffstat (limited to 'testrig/router.go')
-rw-r--r-- | testrig/router.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testrig/router.go b/testrig/router.go index 42716da29..64b3842de 100644 --- a/testrig/router.go +++ b/testrig/router.go @@ -33,7 +33,7 @@ import ( // // If the environment variable GTS_WEB_TEMPLATE_BASE_DIR set, it will take that // value as the template base directory instead. -func NewTestRouter(db db.DB) router.Router { +func NewTestRouter(db db.DB) *router.Router { if alternativeTemplateBaseDir := os.Getenv("GTS_WEB_TEMPLATE_BASE_DIR"); alternativeTemplateBaseDir != "" { config.Config(func(cfg *config.Configuration) { cfg.WebTemplateBaseDir = alternativeTemplateBaseDir |