diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-03-06 19:38:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-06 19:38:38 +0000 |
commit | 3b57e9d29764c3c8ee2d398990ac2aafda1eb2b9 (patch) | |
tree | f31b3a3cf89f510cc896844879b20be7d557b17f /src/orchestrator/cmd | |
parent | 65f9bc3b632a012429cd94aa2e6160b44fe633a7 (diff) | |
parent | 59ead086a9fbd61cad2187f196b1176c20f98691 (diff) |
Merge "Change DB Name to accept variable"
Diffstat (limited to 'src/orchestrator/cmd')
-rw-r--r-- | src/orchestrator/cmd/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/orchestrator/cmd/main.go b/src/orchestrator/cmd/main.go index aa93b9c4..f95c057e 100644 --- a/src/orchestrator/cmd/main.go +++ b/src/orchestrator/cmd/main.go @@ -34,7 +34,7 @@ func main() { rand.Seed(time.Now().UnixNano()) - err := db.InitializeDatabaseConnection() + err := db.InitializeDatabaseConnection("mco") if err != nil { log.Println("Unable to initialize database connection...") log.Println(err) |