diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-02-24 18:23:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-24 18:23:13 +0800 |
commit | 91fa0eb9d7b8c1bb5afac9d68161cf95ae0a02f8 (patch) | |
tree | e2e552ec7ec356af752411d8b595e81c1d28ed24 /routers/init.go | |
parent | edf98a2dc30956c8e04b778bb7f1ce55c14ba963 (diff) | |
download | gitea-91fa0eb9d7b8c1bb5afac9d68161cf95ae0a02f8.tar.gz gitea-91fa0eb9d7b8c1bb5afac9d68161cf95ae0a02f8.zip |
Avoid warning for system setting when start up (#23054)
Partially fix #23050
After #22294 merged, it always has a warning log like `cannot get
context cache` when starting up. This should not affect any real life
but it's annoying. This PR will fix the problem. That means when
starting up, getting the system settings will not try from the cache but
will read from the database directly.
---------
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'routers/init.go')
-rw-r--r-- | routers/init.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/init.go b/routers/init.go index 6a51de669a..d3f822dc83 100644 --- a/routers/init.go +++ b/routers/init.go @@ -150,7 +150,7 @@ func GlobalInitInstalled(ctx context.Context) { mustInit(system.Init) mustInit(oauth2.Init) - mustInit(models.Init) + mustInitCtx(ctx, models.Init) mustInit(repo_service.Init) // Booting long running goroutines. |