Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ var metricSets = []string{
}

func TestFetch(t *testing.T) {
t.Skip("flaky")
compose.EnsureUp(t, "elasticsearch")

host := net.JoinHostPort(getEnvHost(), getEnvPort())
Expand Down Expand Up @@ -100,7 +99,6 @@ func TestFetch(t *testing.T) {
}

func TestData(t *testing.T) {
t.Skip("flaky")
compose.EnsureUp(t, "elasticsearch")

host := net.JoinHostPort(getEnvHost(), getEnvPort())
Expand Down Expand Up @@ -262,7 +260,7 @@ func createCCRStats(host string) error {
return checkCCRStatsExists(host)
}

exists, err := waitForSuccess(checkCCRStats, 200, 5)
exists, err := waitForSuccess(checkCCRStats, 300, 5)
if err != nil {
return errors.Wrap(err, "error checking if CCR stats exist")
}
Expand Down