1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-05 10:07:22 +00:00

Import additional secrets via file uri (#25408)

This commit is contained in:
techknowlogick
2023-06-22 20:16:12 -04:00
committed by GitHub
parent 478f33030e
commit c0fc53e226
3 changed files with 5 additions and 1 deletions

View File

@ -76,7 +76,7 @@ func loadSecret(sec ConfigSection, uriKey, verbatimKey string) string {
// only file URIs are allowed
default:
log.Fatal("Unsupported URI-Scheme %q (INTERNAL_TOKEN_URI = %q)", tempURI.Scheme, uri)
log.Fatal("Unsupported URI-Scheme %q (%q = %q)", tempURI.Scheme, uriKey, uri)
return ""
}
}