Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to support Mongo 3.6. #136

Merged
merged 3 commits into from
Apr 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
default: check

check:
go test ./... && go test ./... -compiler gccgo
go test ./...

.PHONY: default check
13 changes: 7 additions & 6 deletions dependencies.tsv
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
github.com/juju/errors git 1b5e39b83d1835fa480e0c2ddefb040ee82d58b3 2015-09-16T12:56:42Z
github.com/juju/loggo git 15901ae4de786d05edae84a27c93d3fbef66c91e 2016-08-04T22:15:26Z
github.com/juju/loggo git 8232ab8918d91c72af1a9fb94d3edbe31d88b790 2017-06-05T01:46:07Z
github.com/juju/retry git 62c62032529169c7ec02fa48f93349604c345e1f 2015-10-29T02:48:21Z
github.com/juju/utils git d3ba4256601ad03bb65877692da522c2b3b08dc9 2016-09-26T12:49:57Z
github.com/juju/version git 4ae6172c00626779a5a462c3e3d22fc0e889431a 2016-06-03T19:49:58Z
golang.org/x/crypto git aedad9a179ec1ea11b7064c57cbc6dc30d7724ec 2015-08-30T18:06:42Z
github.com/juju/utils git 9b65c33e54c793d74a4ed99c15111c44faddb8e4 2017-10-25T16:38:56Z
github.com/juju/version git 1f41e27e54f21acccf9b2dddae063a782a8a7ceb 2016-10-31T05:19:06Z
golang.org/x/crypto git 650f4a345ab4e5b245a3034b110ebc7299e68186 2018-02-14T00:00:28Z
golang.org/x/net git ea47fc708ee3e20177f3ca3716217c4ab75942cb 2015-08-29T23:03:18Z
gopkg.in/check.v1 git 4f90aeace3a26ad7021961c297b22c42160c7b25 2016-01-05T16:49:36Z
gopkg.in/mgo.v2 git 4d04138ffef2791c479c0c8bbffc30b34081b8d9 2015-10-26T16:34:53Z
gopkg.in/yaml.v2 git a83829b6f1293c91addabc89d0571c246397bbf4 2016-03-01T20:40:22Z
gopkg.in/mgo.v2 git f2b6f6c918c452ad107eec89615f074e3bd80e33 2016-08-18T01:52:18Z
gopkg.in/yaml.v2 git 1be3d31502d6eabc0dd7ce5b0daab022e14a5538 2017-07-12T05:45:46Z
3 changes: 1 addition & 2 deletions mgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ func (inst *MgoInstance) run() error {
"--nssize", "1",
"--noprealloc",
"--smallfiles",
"--nohttpinterface",
"--oplogSize", "10",
"--ipv6",
"--setParameter", "enableTestCommands=1",
Expand Down Expand Up @@ -744,7 +743,7 @@ func (inst *MgoInstance) Reset() error {
logger.Infof("reset successfully reset admin password")
for _, name := range dbnames {
switch name {
case "local", "config":
case "local", "config", "admin":
// don't delete these
continue
}
Expand Down