Disable snapshot endpoint during testing

Once we have proper endpoint layering, this can be re-enabled.
pull/2093/head
Philip O'Toole 2015-03-26 16:25:30 -07:00
parent c4871513a2
commit efdb7e89e2
1 changed files with 1 additions and 1 deletions

View File

@ -98,9 +98,9 @@ func createCombinedNodeCluster(t *testing.T, testName, tmpDir string, nNodes, ba
c.Data.Dir = filepath.Join(tmpDataDir, strconv.Itoa(basePort))
c.Broker.Port = basePort
c.Data.Port = basePort
c.Snapshot.Port = basePort + 1
c.Admin.Enabled = false
c.ReportingDisabled = true
c.Snapshot.Enabled = false
b, s := main.Run(c, "", "x.x")
if b == nil {