mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-17 17:45:03 +02:00
Fix database connection
This commit is contained in:
parent
9fc02e360a
commit
44ec2c3064
@ -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…
x
Reference in New Issue
Block a user