Having this error after deploying my code to cloud, using google appengine, i use objectify indexing for my filtering.
here is my java class (Entity) file containing the index
@Entity
public class Session{
@Index private Integer year;
@Index private Key<Institute> institute;
//some other manipulation goes below
}
When am trying to call a list of entity from datastore using objectify like this
ofy().load().type(Session.class).filter("institute",t).order("year").list();//order by year
it throws the below error on my console , the below image shows it , sorry not too clear