mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
Mark depreciation of MSSQL
- Per https://codeberg.org/forgejo/discussions/issues/122
This commit is contained in:
parent
2024519bb4
commit
c65b9e0112
1 changed files with 7 additions and 0 deletions
|
@ -12,6 +12,8 @@ import (
|
|||
"path/filepath"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"code.gitea.io/gitea/modules/log"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -62,6 +64,11 @@ func loadDBSetting(rootCfg ConfigProvider) {
|
|||
sec := rootCfg.Section("database")
|
||||
Database.Type = DatabaseType(sec.Key("DB_TYPE").String())
|
||||
|
||||
if Database.Type.IsMSSQL() {
|
||||
log.Error("Your Forgejo instance uses Microsoft SQL Server as its database which is scheduled for removal in v8.0. Please file an issue https://codeberg.org/forgejo/forgejo/issues/new to get help migrating to another database. Waiting 60 seconds before starting Forgejo")
|
||||
time.Sleep(time.Second * 60)
|
||||
}
|
||||
|
||||
Database.Host = sec.Key("HOST").String()
|
||||
Database.Name = sec.Key("NAME").String()
|
||||
Database.User = sec.Key("USER").String()
|
||||
|
|
Loading…
Reference in a new issue