Hardy Ferentschik commented on an issue
Hibernate Search / Bug HSEARCH-1442
IndexedEmbedded field not found
I just tried upgrading everything to the latest version and I ran into this blocker

{code}
FullTextSession fts = Search
.getFullTextSession(getSessionFactory().getCurrentSession());

QueryBuilder qb = fts.getSearchFactory().buildQueryBuilder()
.forEntity(Usor.class).get();

return (Long) fts.createFullTextQuery(qb.bool().mu...