-
Notifications
You must be signed in to change notification settings - Fork 8
Feature/v1 indexing fixes #64
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 Graph().All() functions seems to randomly miss certain triples when iterating. When using IterTriples directly this bug does not manifest.
|
CLA Assistant Lite All Contributors have signed the CLA. |
Codecov Report
@@ Coverage Diff @@
## master #64 +/- ##
==========================================
- Coverage 31.94% 31.94% -0.01%
==========================================
Files 115 115
Lines 13642 13649 +7
==========================================
+ Hits 4358 4360 +2
- Misses 9011 9015 +4
- Partials 273 274 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
warmwaterkruik
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.
Looks good. Robot tests are clean as well.
|
CLA Assistant Lite All Contributors have signed the CLA. |
|
Kudos, SonarCloud Quality Gate passed!
|
warmwaterkruik
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.
mooi
This pull-request contains some fixes to the v1 bulk indexing API.
when indexing via the bulk index API the recordType is also included for indexing. 'mdr' and 'narthex_record' are supported as the defaults when received from Nathex
due to a bug in the external RDF library when using rdf2go.Graph().All() does not return all the matching triples. This working around using rd2go.Graph().IterTriples() makes sure that resolving the RDF labels returns all the labels.