Skip to content

Commit bfa4203

Browse files
committed
[Test] Single-project-only resolver should not support multi-project
In MP-1749, we differentiate between single-project and single-project only resolvers. The later should not support multi-project.
1 parent e06bece commit bfa4203

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/framework/src/main/java/org/elasticsearch/cluster/project/TestProjectResolvers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public <E extends Exception> void executeOnProject(ProjectId otherProjectId, Che
144144

145145
@Override
146146
public boolean supportsMultipleProjects() {
147-
return true;
147+
return only == false;
148148
}
149149
};
150150
}

0 commit comments

Comments
 (0)