Browse Source

Avoid writing config file if not installed (#26107) (#26113)

Backport #26107 by @wxiaoguang

Just like others (oauth2 secret, internal token, etc), do not generate
if no install lock

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
tags/v1.20.2
Giteabot 10 months ago
parent
commit
e2596b0a99
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/setting/lfs.go

+ 1
- 1
modules/setting/lfs.go View File

@@ -56,7 +56,7 @@ func loadLFSFrom(rootCfg ConfigProvider) error {
LFS.JWTSecretBytes = make([]byte, 32)
n, err := base64.RawURLEncoding.Decode(LFS.JWTSecretBytes, []byte(LFS.JWTSecretBase64))

if err != nil || n != 32 {
if (err != nil || n != 32) && InstallLock {
LFS.JWTSecretBase64, err = generate.NewJwtSecretBase64()
if err != nil {
return fmt.Errorf("error generating JWT Secret for custom config: %v", err)

Loading…
Cancel
Save