-
Notifications
You must be signed in to change notification settings - Fork 70
Add methods to automatically add/update documents in batches #166
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
|
Hello @alejandrocq thanks a lot for your PR |
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.
45b69e4 to
fe96bd8
Compare
fe96bd8 to
571497e
Compare
|
Ok, I think all it's alright now, at least build and test look good in my machine :) |
curquiza
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.
Thank you @alejandrocq
bors merge
If you are participating in Hacktoberfest, and you would like to receive a small gift from MeiliSearch too, please complete this form.
166: Add methods to automatically add/update documents in batches r=curquiza a=alejandrocq Hi, I have added the methods to add/update documents in batches (#157) in `Index.cs`. I have not been able to run the tests correctly because I get the following error in most of them: ``` Meilisearch.MeilisearchApiError MeilisearchApiError, Message: The Content-Type "application/json; charset=utf-8" is invalid. Accepted values for the Content-Type header are: "application/json", "application/x-ndjson", "application/csv" ``` Seems to be an error with the `PostJsonAsync`method adding the charset parameter, but I suppose that has been working correctly for you. Let me know if the code is okay and what should I do to fix that error. I will keep investigating if I get some time. Co-authored-by: Alejandro Castilla Quesada <[email protected]>
|
Build failed: |
|
bors try |
tryBuild succeeded: |
|
oops looks like there are some flaky, I will open an issue (it's because of the dumps, so not related to your PR) |
|
Build succeeded: |

Hi,
I have added the methods to add/update documents in batches (#157) in
Index.cs. I have not been able to run the tests correctly because I get the following error in most of them:Seems to be an error with the
PostJsonAsyncmethod adding the charset parameter, but I suppose that has been working correctly for you.Let me know if the code is okay and what should I do to fix that error. I will keep investigating if I get some time.