diff --git a/CHANGELOG-developer.next.asciidoc b/CHANGELOG-developer.next.asciidoc index 2e918d757dce..b3e0b1af2101 100644 --- a/CHANGELOG-developer.next.asciidoc +++ b/CHANGELOG-developer.next.asciidoc @@ -86,6 +86,7 @@ The list below covers the major changes between 7.0.0-rc2 and main only. - Fix ingest pipeline for panw module to parse url scheme correctly {pull}35757[35757] - Renamed an httpjson input metric to follow naming conventions. `httpjson_interval_pages_total` was renamed to `httpjson_interval_pages` because the `_total` suffix is reserved for counters. {issue}35933[35933] {pull}36169[36169] - Fixed some race conditions in tests {pull}36185[36185] +- Re-enable HTTPJSON fixed flakey test. {issue}34929[34929] {pull}[] ==== Added diff --git a/x-pack/filebeat/input/httpjson/input_test.go b/x-pack/filebeat/input/httpjson/input_test.go index e88a0a28d30d..e4d94527e725 100644 --- a/x-pack/filebeat/input/httpjson/input_test.go +++ b/x-pack/filebeat/input/httpjson/input_test.go @@ -374,8 +374,6 @@ var testCases = []struct { }, }, { - skipReason: "flakey test - see https://github.com/elastic/beats/issues/34929", - name: "first_event", setupServer: func(t testing.TB, h http.HandlerFunc, config map[string]interface{}) { server := httptest.NewServer(h)