PercolateQuery is never cacheable

This commit is contained in:
Simon Willnauer 2016-10-05 16:38:47 +02:00
parent 7bffe95025
commit 57afbadf33
1 changed files with 5 additions and 0 deletions

View File

@ -248,4 +248,9 @@ public class PercolateQueryBuilderTests extends AbstractQueryTestCase<PercolateQ
throw new RuntimeException(e);
}
}
@Override
protected boolean isCachable(PercolateQueryBuilder queryBuilder) {
return false;
}
}