We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02ca394 commit d2eba28Copy full SHA for d2eba28
server/src/internalClusterTest/java/org/elasticsearch/search/fieldcaps/FieldCapabilitiesIT.java
@@ -906,6 +906,10 @@ static void unblockOnRewrite() {
906
907
@Override
908
protected QueryBuilder doRewrite(QueryRewriteContext queryRewriteContext) throws IOException {
909
+ // skip rewriting on the coordinator
910
+ if (queryRewriteContext.convertToCoordinatorRewriteContext() != null) {
911
+ return this;
912
+ }
913
try {
914
blockingLatch.await();
915
} catch (InterruptedException e) {
0 commit comments