-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
.Lang() not allowed to be specified as parameter in 6.0 on update request. #2935
Comments
I'm seeing this in some other contexts (ie. |
Apologies @tdoman, my last comment was incorrect. |
@russcam Yep, NEST had been allowing me to specify |
@russcam I grabbed the 12/14 build, looks great! Just more thorough testing to do, thanks for all the work, looking forward to the official ship of NEST 6.0! |
@tdoman NEST-6.0.0-beta1 is up on Nuget if you're like to take that for a spin; it's very near to what we expect to be in the GA release and we have released it to nuget in order to garner wider feedback. |
Sweet, I will pull that from Nuget and give it a spin, thanks Russ! |
NEST 6.1.0-ci1208153011
The NEST library allows it to be specified but ES 6.0 responds with:
"request [/myindex/mytype/1/_update] contains unrecognized parameter: [lang]"
var response = await client.UpdateAsync<T, object>(id, u => u.Index(index).Type(type).Lang("painless").Script(s => s.Indexed(scriptFile).Params(parms)).RetryOnConflict(5));
The text was updated successfully, but these errors were encountered: