-
Notifications
You must be signed in to change notification settings - Fork 17
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
Test against Elastic 7.x and 8.x and OpenSearch 1.x #69
Conversation
f6e4bb2
to
ea9ae11
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #69 +/- ##
==========================================
+ Coverage 50.96% 53.77% +2.81%
==========================================
Files 6 6
Lines 569 569
==========================================
+ Hits 290 306 +16
+ Misses 254 238 -16
Partials 25 25 ☔ View full report in Codecov by Sentry. |
ea9ae11
to
b5c323e
Compare
ca06c68
to
40c4f35
Compare
40c4f35
to
15872d6
Compare
indexers/base.go
Outdated
|
||
// deletes a document | ||
const deleteCommand = `{ "delete" : { "_id": %d, "_type": "_doc", "version": %d, "version_type": "external", "routing": %d} }` |
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.
Note to self: need to check if removing this still works against indexes created with type
6cab68b
to
4382ff1
Compare
4382ff1
to
a619adc
Compare
19de6ed
to
d0bd433
Compare
d0bd433
to
38b36e6
Compare
@@ -6,6 +6,12 @@ jobs: | |||
test: | |||
name: Test | |||
runs-on: ubuntu-latest | |||
container: | |||
image: node:18 |
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 makes the test run in a container.. which then has access to the services using their name as the host, e.g. http://elastic7:9200
6d47d57
to
e0085e4
Compare
No description provided.