Hello,
I'm getting the following errors in author instance:
error.log:10.10.2016 05:03:38.868 ERROR [10.43.32.118 [1476090145519] POST /content/phonegap/my-app/main/jcr:content/pge-app/app-config.newupdate.json HTTP/1.1] com.day.cq.search.impl.builder.QueryBuilderImpl Unable to get PredicateEvaluator instance: limit
error.log:10.10.2016 05:03:38.869 ERROR [10.43.32.118 [1476090145519] POST /content/phonegap/my-app/main/jcr:content/pge-app/app-config.newupdate.json HTTP/1.1] com.day.cq.search.impl.builder.QueryBuilderImpl Unable to get PredicateEvaluator instance: offset
But the stacktrace is not logged (or doesn't exist). Does anyone know what this error means?
It is related to ContentSync, when I stage changes.
Thanks.
Solved! Go to Solution.
Views
Replies
Total Likes
We solved the problem.
We were putting the params "offset" and "limit" in the map, to create the query.
map.put(PredicateGroup.PARAM_OFFSET, "0"); map.put(PredicateGroup.PARAM_LIMIT, PARAM_VALUE_UNLIMITED);
After removing these lines, the error is not logged anymore.
Thanks.
Views
Replies
Total Likes
Please provide more details - are you using custom code? What API are you using if you are. If possible - post the code.
Views
Replies
Total Likes
Can you please share with us, your Querybuilder query?? what value you are using in p.limit ?
Please have a look at this similar post :-
~kautuk
Views
Replies
Total Likes
We solved the problem.
We were putting the params "offset" and "limit" in the map, to create the query.
map.put(PredicateGroup.PARAM_OFFSET, "0"); map.put(PredicateGroup.PARAM_LIMIT, PARAM_VALUE_UNLIMITED);
After removing these lines, the error is not logged anymore.
Thanks.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies