Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Flaky Test] Fix flaky test in range aggregation yaml test #14486

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
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 @@ -678,6 +678,11 @@ setup:
- '{"index": {}}'
- '{"date": "2016-03-01"}'

- do:
indices.forcemerge:
index: test_2
max_num_segments: 1

- do:
search:
index: test_2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,12 @@ setup:
- '{"date": "2016-02-01"}'
- '{"index": {}}'
- '{"date": "2016-03-01"}'

- do:
indices.forcemerge:
index: test_2
max_num_segments: 1

- do:
search:
index: test_2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ setup:
- '{"index": {}}'
- '{"date": "2020-03-09", "v": 4}'

- do:
indices.forcemerge:
index: test_profile
max_num_segments: 1

- do:
search:
index: test_profile
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,7 @@ setup:
body:
settings:
number_of_replicas: 0
number_of_shards: 1
refresh_interval: -1
mappings:
properties:
Expand All @@ -567,6 +568,11 @@ setup:
- '{"index": {}}'
- '{"double" : 50}'

- do:
indices.forcemerge:
index: test_profile
max_num_segments: 1

- do:
search:
index: test_profile
Expand Down
Loading