Fix database connection

This commit is contained in:
Alexander Simonov 2015-07-12 01:07:14 +03:00
parent 9fc02e360a
commit 44ec2c3064
No known key found for this signature in database
GPG key ID: 5CCFFED829314C35

View file

@ -4,7 +4,6 @@ import (
"flag" "flag"
"html/template" "html/template"
"net/http" "net/http"
"os"
"github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin" "github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin"
@ -45,7 +44,7 @@ func main() {
panic(err) panic(err)
} }
store, err := store.New(os.Getenv("DATABASE")) store, err := store.New(settings.Database.Driver + "://" + settings.Database.Datasource)
if err != nil { if err != nil {
panic(err) panic(err)
} }