-
Notifications
You must be signed in to change notification settings - Fork 25.7k
[test] Fix off-by-one error in RecoverySourcePruneMergePolicyTests#testPruneSome
#118944
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
Conversation
The `extra_source_size` field is set to a value between 10 and 10000 inclusive, so the assertion should be `greaterThanOrEqualTo(10)` rather than greaterThan(10). Resolve elastic#118728
|
Pinging @elastic/es-storage-engine (Team:StorageEngine) |
|
Pinging @elastic/es-distributed-indexing (Team:Distributed Indexing) |
martijnvg
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing @arteam! LGTM
💔 Backport failedThe backport operation could not be completed due to the following error: You can use sqren/backport to manually backport by running |
…#118944) The `extra_source_size` field is set to a value between 10 and 10000 inclusive, so the assertion should be `greaterThanOrEqualTo(10)` rather than `greaterThan(10)`. See elastic#114618 Resolve elastic#118728
…stPruneSome` Backports #118944 to 8.x
The test failure elastic#118728 was fixed by elastic#118944 but test wasn't unmuted.
The
extra_source_sizefield is set to a value between 10 and 10000 inclusive, so the assertion should begreaterThanOrEqualTo(10)rather thangreaterThan(10).See #114618
Resolve #118728