Thomas Farr

Results 66 comments of Thomas Farr

Thanks for the report @sharp-pixel, would you be interested in making a PR to add this optional constructor?

> When I run the above, I get "query is missing" - I'm at a loss why; this is usually because of extra newline in the query but that cant...

While not ideal, you can work around this missing API and still take advantage of the client's configuration (e.g auth, hosts, SSL) by making the request with the low-level raw...

@david-alpert-nl In this case `BulkAll` uses the automatic ID inference, this is generally unchanged since the fork from Elasticsearch so https://www.elastic.co/guide/en/elasticsearch/client/net-api/7.16/ids-inference.html should be mostly valid. 1. It will look for...

Various clients have already made this conversion from old specs to OpenAPI: - Ruby: https://github.com/opensearch-project/opensearch-ruby/blob/main/api_generator/lib/api_generator.rb#L42-L54 - Python: https://github.com/opensearch-project/opensearch-py/blob/main/utils/generate-api.py#L439-L647 - .NET/C#: https://github.com/opensearch-project/opensearch-net/blob/main/src/ApiGenerator/Generator/ApiGenerator.cs#L93-L107

@andresanscartier Very interesting that this is iOS specific, I haven't done any development on .NET targeting iOS yet, I'll try to have a go at reproducing this. In the meantime...

@andresanscartier The issue linked appears to be a different issue and relates to their renaming of assemblies and is from before OpenSearch's fork so is in the history of this...

So the issue seems to be that even you flag the `OpenSearch.Net` assembly as being preserved, ILLink still trims the `InternalsVisibleTo` attributes which are necessary due to the dynamic assemblies...

I asked in the discord channel for .NET linker/ILLink, and unfortunately looks like there's currently no way to stop this behaviour without reducing the link mode to off/sdk-only, performing some...

> Hi @Xtansia We will conduct some tests to modify the link behavior, but in the past, we changed those settings because our app wouldn't work otherwise. You mentioned, 'modifying...