Add text stating trying to connect to db for feedback

This commit is contained in:
Brandon Myers 2018-09-18 18:40:02 -05:00
Родитель 69a59bf660
Коммит 858f79794d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -11,6 +11,7 @@ import (
"io"
"github.com/mozilla/mig"
migdb "github.com/mozilla/mig/database"
"os"
"strconv"
"strings"
"sync"
@ -113,6 +114,7 @@ func initDB(orig_ctx Context) (ctx Context, err error) {
ctx.Channels.Log <- mig.Log{Desc: "leaving initDB()"}.Debug()
}()
fmt.Fprintf(os.Stdout, "Attempting to connect to postgresql database...")
ctx = orig_ctx
ctx.DB, err = migdb.Open(ctx.Postgres.DBName, ctx.Postgres.User, ctx.Postgres.Password,
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()
}()
fmt.Fprintf(os.Stdout, "Attempting to connect to postgresql database...")
ctx = orig_ctx
ctx.DB, err = migdb.Open(ctx.Postgres.DBName, ctx.Postgres.User, ctx.Postgres.Password,
ctx.Postgres.Host, ctx.Postgres.Port, ctx.Postgres.SSLMode)