Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(go): fix client leak: client for the same mongodb server may be c…
…reated multiple times (#96) Because it need some time (maybe milliseconds to seconds) to wait `mongo.NewClient` returning a client instance, then the client cache can be empty when other new `create(uri)` calls come, and these new calls will also create new client instances via `mongo.NewClient`. re #95
- Loading branch information