use 127.0.0.1 for mongo connection string

This commit is contained in:
Shawn Smith
2015-10-14 12:40:26 +09:00
parent feeccfa3db
commit bf828304ce

View File

@@ -14,7 +14,7 @@ import (
)
var (
mongoURL = "mongodb://localhost:27017"
mongoURL = "mongodb://127.0.0.1:27017"
mongoDatabase = "goreportcard"
mongoCollection = "reports"
)