mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 18:01:02 +00:00
Fix database connection
This commit is contained in:
parent
9fc02e360a
commit
44ec2c3064
1 changed files with 1 additions and 2 deletions
|
@ -4,7 +4,6 @@ import (
|
|||
"flag"
|
||||
"html/template"
|
||||
"net/http"
|
||||
"os"
|
||||
|
||||
"github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin"
|
||||
|
||||
|
@ -45,7 +44,7 @@ func main() {
|
|||
panic(err)
|
||||
}
|
||||
|
||||
store, err := store.New(os.Getenv("DATABASE"))
|
||||
store, err := store.New(settings.Database.Driver + "://" + settings.Database.Datasource)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue