I have a simple class city
@Getter
@Setter
@ToString
public class City {
public City(String cityName) {
this.cityName = cityName;
}
@Nonnull
private String cityName;
}
And this is my rule in allocations
"allocations": [
{
"rule": "${city.cityName=='NY'}",
"ranges": [
{
"length": 0.1,
"bucketValue": 2
},
{
"length": 0.9,
"bucketValue": 1
}
]
},......
When I am running the loader I'm getting this error
[com.indeed.proctor.common.RuleVerifyUtils.verifyRule] - Rule ${city.cityName=='bangalore'} contains uninstantiated identifier(s) in [city], ignore the failure
javax.el.PropertyNotFoundException: ELResolver did not handle type: null with property of 'null'
I might be missing very basic thing here but couldn't figure out.
--
You received this message because you are subscribed to the Google Groups "indeedeng-proctor-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to indeedeng-proctor-users+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.