Enable bootstrap mode for the tests

This commit is contained in:
Armon Dadgar 2013-12-24 16:53:30 -08:00
parent 9a2d3c144a
commit 8cc761de17
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ func nextConfig() *Config {
idx := atomic.AddUint64(&offset, 1)
conf := DefaultConfig()
conf.Bootstrap = true
conf.Datacenter = "dc1"
conf.HTTPAddr = fmt.Sprintf("127.0.0.1:%d", 8500+10*idx)
conf.RPCAddr = fmt.Sprintf("127.0.0.1:%d", 8400+10*idx)

View File

@ -31,6 +31,7 @@ func testServer(t *testing.T) (string, *Server) {
func testServerDC(t *testing.T, dc string) (string, *Server) {
dir := tmpDir(t)
config := DefaultConfig()
config.Bootstrap = true
config.Datacenter = dc
config.DataDir = dir