While indexing an item, it returns this error: index [] blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];
I found a solution : curl -XPUT -H "Content-Type: application/json" http://localhost:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}' source of solution : https://benjaminknofe.com/blog/2017/12/23/forbidden-12-index-read-only-allow-delete-api-read-only-elasticsearch-indices/
How to apply this settings with my ElasticClient object in NEST 7.x?
Thanks,