forked from globalsign/mgo
-
Notifications
You must be signed in to change notification settings - Fork 9
/
export_test.go
46 lines (39 loc) · 847 Bytes
/
export_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package mgo
import (
"net"
"time"
)
func HackPingDelay(newDelay time.Duration) (restore func()) {
globalMutex.Lock()
defer globalMutex.Unlock()
oldDelay := pingDelay
restore = func() {
globalMutex.Lock()
pingDelay = oldDelay
globalMutex.Unlock()
}
pingDelay = newDelay
return
}
func HackSyncSocketTimeout(newTimeout time.Duration) (restore func()) {
globalMutex.Lock()
defer globalMutex.Unlock()
oldTimeout := syncSocketTimeout
restore = func() {
globalMutex.Lock()
syncSocketTimeout = oldTimeout
globalMutex.Unlock()
}
syncSocketTimeout = newTimeout
return
}
func (s *Session) Cluster() *mongoCluster {
return s.cluster()
}
func (cluster *mongoCluster) Server(addr string) *mongoServer {
tcpaddr, err := net.ResolveTCPAddr("tcp", addr)
if err != nil {
panic(err)
}
return cluster.server(addr, tcpaddr)
}