This commit is contained in:
Xiang Li 2013-08-11 09:48:12 -07:00
parent 434b0045db
commit d3649d3254
4 changed files with 11 additions and 11 deletions

View File

@ -364,7 +364,7 @@ func newTransporter(scheme string, tlsConf tls.Config) transporter {
t.scheme = scheme
tr := &http.Transport{
Dial: dialTimeout,
Dial: dialTimeout,
}
if scheme == "https" {

View File

@ -1,21 +1,21 @@
package main
import (
"time"
"fmt"
"time"
)
type snapshotConf struct {
// basic
checkingInterval time.Duration
lastWrites uint64
writesThr uint64
lastWrites uint64
writesThr uint64
}
var snapConf *snapshotConf
func newSnapshotConf() *snapshotConf {
return &snapshotConf {time.Second*3, etcdStore.TotalWrites(), 20*1000}
return &snapshotConf{time.Second * 3, etcdStore.TotalWrites(), 20 * 1000}
}
func monitorSnapshot() {