forked from mystiq/dex
*: don't allow sqlite3 if --no-db flag not specified
This commit is contained in:
parent
3b125d6073
commit
07af73f367
2 changed files with 8 additions and 0 deletions
|
@ -12,6 +12,7 @@ import (
|
|||
"time"
|
||||
|
||||
"github.com/coreos/go-oidc/key"
|
||||
"github.com/go-gorp/gorp"
|
||||
|
||||
"github.com/coreos/dex/admin"
|
||||
"github.com/coreos/dex/db"
|
||||
|
@ -94,6 +95,9 @@ func main() {
|
|||
if err != nil {
|
||||
log.Fatalf(err.Error())
|
||||
}
|
||||
if _, ok := dbc.Dialect.(gorp.PostgresDialect); !ok {
|
||||
log.Fatal("only postgres backend supported for multi server configurations")
|
||||
}
|
||||
|
||||
if *dbMigrate {
|
||||
var sleep time.Duration
|
||||
|
|
|
@ -14,6 +14,7 @@ import (
|
|||
"github.com/coreos/go-oidc/key"
|
||||
"github.com/coreos/go-oidc/oidc"
|
||||
"github.com/coreos/pkg/health"
|
||||
"github.com/go-gorp/gorp"
|
||||
|
||||
"github.com/coreos/dex/connector"
|
||||
"github.com/coreos/dex/db"
|
||||
|
@ -222,6 +223,9 @@ func (cfg *MultiServerConfig) Configure(srv *Server) error {
|
|||
if err != nil {
|
||||
return fmt.Errorf("unable to initialize database connection: %v", err)
|
||||
}
|
||||
if _, ok := dbc.Dialect.(gorp.PostgresDialect); !ok {
|
||||
return errors.New("only postgres backend supported for multi server configurations")
|
||||
}
|
||||
|
||||
kRepo, err := db.NewPrivateKeySetRepo(dbc, cfg.UseOldFormat, cfg.KeySecrets...)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue