-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[Tests] Removing AwaitsFix for closed issue in CCSDuelIT #85538
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
|
Pinging @elastic/es-search (Team:Search) |
2f9a3f5 to
6a638e4
Compare
|
So this currently still fails on some equality assertion that only seems to be caused by two object instances not being the same (they use Object#toString() apparently in the output). I wonder if that is just something we have to relax in the test? |
|
thanks for opening this @cbuescher . Is it clear how these two objects differ? I would probably print out their xcontent to try and see how to move forward. |
Yes, the above is already the output of the json resonse (expected vs. actual) that the test graciously reports. As far as I can see the value of the "name" field differs in its String representation. I was going to check why (or why we even use the raw objects "toString" as in |
|
So it appears that "profile" uses Aggregators "toString()" method, which e.g. |
|
Locally this passed now, but a specific seed surfaced another error, but this might turn out to be a genuine test error, I'm not sure though: |
|
Can you post the error @cbuescher ? |
|
Some bucket counts for what seems to be the terms aggregation are different between the two responses that are being compared by this test, i.e. Full context can be seem here Maybe we should open a new issue for investigation around this and replace the existing @AwaitsFix issue number with that issue? |
|
Re-checked this after merging #85281. The reproduce line slightly changed due to the changes in the gradle build file. The error with the unexpected values in "doc_count_error_upper_bound" now shows e.g. with |
|
I am wondering if this is another occurrence of the same bug that we thought was fixed, or rather a test bug. I am moving this to the Analytics team to check out. |
|
Pinging @elastic/es-analytics-geo (Team:Analytics) |
|
I think it makes sense to split out the one-liner change in 860de2c that otherwise hides the mismatch in "doc_count_error_upper_bound" in a separate PR |
|
@elasticmachine test this please |
|
I'm closing this PR but re-opened #40005 for tracking, since I think having an open issue instead of a PR increases its visibility. |
The referenced issue #40005 is marked as closed, so we should either be able to remove the @AwaitsFix notation and be able to run the test or we should create another issue in case the test still fails.