perkeep/third_party/labix.org/v2/mgo/export_test.go

11 lines
186 B
Go

package mgo
func HackSocketsPerServer(newLimit int) (restore func()) {
oldLimit := newLimit
restore = func() {
socketsPerServer = oldLimit
}
socketsPerServer = newLimit
return
}