зеркало из https://github.com/mozilla/mig.git
Add text stating trying to connect to db for feedback
This commit is contained in:
Родитель
69a59bf660
Коммит
858f79794d
|
@ -11,6 +11,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"github.com/mozilla/mig"
|
"github.com/mozilla/mig"
|
||||||
migdb "github.com/mozilla/mig/database"
|
migdb "github.com/mozilla/mig/database"
|
||||||
|
"os"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
@ -113,6 +114,7 @@ func initDB(orig_ctx Context) (ctx Context, err error) {
|
||||||
ctx.Channels.Log <- mig.Log{Desc: "leaving initDB()"}.Debug()
|
ctx.Channels.Log <- mig.Log{Desc: "leaving initDB()"}.Debug()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
fmt.Fprintf(os.Stdout, "Attempting to connect to postgresql database...")
|
||||||
ctx = orig_ctx
|
ctx = orig_ctx
|
||||||
ctx.DB, err = migdb.Open(ctx.Postgres.DBName, ctx.Postgres.User, ctx.Postgres.Password,
|
ctx.DB, err = migdb.Open(ctx.Postgres.DBName, ctx.Postgres.User, ctx.Postgres.Password,
|
||||||
ctx.Postgres.Host, ctx.Postgres.Port, ctx.Postgres.SSLMode)
|
ctx.Postgres.Host, ctx.Postgres.Port, ctx.Postgres.SSLMode)
|
||||||
|
|
|
@ -195,6 +195,7 @@ func initDB(orig_ctx Context) (ctx Context, err error) {
|
||||||
ctx.Channels.Log <- mig.Log{Desc: "leaving initDB()"}.Debug()
|
ctx.Channels.Log <- mig.Log{Desc: "leaving initDB()"}.Debug()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
fmt.Fprintf(os.Stdout, "Attempting to connect to postgresql database...")
|
||||||
ctx = orig_ctx
|
ctx = orig_ctx
|
||||||
ctx.DB, err = migdb.Open(ctx.Postgres.DBName, ctx.Postgres.User, ctx.Postgres.Password,
|
ctx.DB, err = migdb.Open(ctx.Postgres.DBName, ctx.Postgres.User, ctx.Postgres.Password,
|
||||||
ctx.Postgres.Host, ctx.Postgres.Port, ctx.Postgres.SSLMode)
|
ctx.Postgres.Host, ctx.Postgres.Port, ctx.Postgres.SSLMode)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче