-
Notifications
You must be signed in to change notification settings - Fork 223
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
bug-1921849: support elasticsearch 8 #6741
base: main
Are you sure you want to change the base?
Conversation
d96b425
to
9ac223f
Compare
This comment was marked as resolved.
This comment was marked as resolved.
32912f9
to
b360970
Compare
@@ -458,7 +491,8 @@ def test_get_with_bool_operators(self, es_helper): | |||
|
|||
assert resp["total"] == 2 | |||
assert len(resp["hits"]) == 2 | |||
assert not resp["hits"][0]["accessibility"] | |||
for hit in resp["hits"]: | |||
assert not hit["accessibility"] |
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.
this test was flaky because it was only checking one hit, checking every hit made it reliably fail until I restored correct behavior.
@@ -575,6 +612,8 @@ def _submit_crash_to_elasticsearch( | |||
# is and fix the document and try again | |||
field_name = None | |||
|
|||
# TODO(relud) clean this up |
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.
just noticed this note, i'll add some tests and update this error handling
@relud Can you rebase this against main? That picks up the changes to move translating between processed crash schema permissions and webapp permissions. Then I can continue working on reviewing this. |
19b3ea4
to
c0e2cfd
Compare
Co-authored-by: krzepka <rzarol.kepka@gmail.com>
c0e2cfd
to
2704c10
Compare
@willkg rebase completed |
requires #6736
use
ELASTICSEARCH_MODE=PREFER_NEW
to make the webapp use es8 and the processor write to both es 1.4 and es8