diff options
author | 6543 <6543@obermui.de> | 2020-10-13 02:41:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 20:41:49 -0400 |
commit | ade9c8dc3cc75da09642cbb259d3dd4efeb41a6b (patch) | |
tree | 3b3ca2101214ea1e77d895eaf4cf2a8c16b653df /models | |
parent | f4ffe8ed54cc49b8c0ca20a8aa1db6732f39a8a0 (diff) | |
download | gitea-ade9c8dc3cc75da09642cbb259d3dd4efeb41a6b.tar.gz gitea-ade9c8dc3cc75da09642cbb259d3dd4efeb41a6b.zip |
[API] If User is Admin, show 500 error message on PROD mode too (#13115)
* API: show admin 500 error message on PROD mode too
* a nit
* dont miss InternalServerError
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'models')
-rw-r--r-- | models/migrations/migrations.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index 999fe622d7..4e12181b15 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -320,9 +320,9 @@ Please try upgrading to a lower version first (suggested v1.6.4), then upgrade t return nil } - // Downgraded Gitea not supported + // Downgrading Gitea's database version not supported if int(v-minDBVersion) > len(migrations) { - msg := fmt.Sprintf("Downgrading Gitea from '%d' to '%d' is not supported and may result in loss of data integrity.\nIf you really know what you're doing, execute `UPDATE version SET version=%d WHERE id=1;`\n", + msg := fmt.Sprintf("Downgrading database version from '%d' to '%d' is not supported and may result in loss of data integrity.\nIf you really know what you're doing, execute `UPDATE version SET version=%d WHERE id=1;`\n", v, minDBVersion+len(migrations), minDBVersion+len(migrations)) fmt.Fprint(os.Stderr, msg) log.Fatal(msg) |