NIFI-4295:

- When determining which controller services to return for a component, ensure that we don't show services that belong to 'child groups'
- Fixed a logic bug that determined which process group to use for obtaining controller services
- This closes #2087
This commit is contained in:
Mark Payne 2017-08-15 12:48:30 -04:00 committed by Matt Gilman
parent 5cd8e93beb
commit 69a08e78c2
No known key found for this signature in database
GPG Key ID: DF61EC19432AEE37
1 changed files with 13 additions and 16 deletions

View File

@ -35,6 +35,7 @@ import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
import org.apache.commons.lang3.ClassUtils;
import org.apache.commons.lang3.StringUtils;
@ -543,28 +544,24 @@ public class StandardControllerServiceProvider implements ControllerServiceProvi
serviceNodes = flowController.getRootControllerServices();
} else {
ProcessGroup group = getRootGroup();
if (FlowController.ROOT_GROUP_ID_ALIAS.equals(groupId) || group.getIdentifier().equals(groupId)) {
serviceNodes = new HashSet<>(serviceCache.values());
} else {
if (!FlowController.ROOT_GROUP_ID_ALIAS.equals(groupId) && !group.getIdentifier().equals(groupId)) {
group = group.findProcessGroup(groupId);
if (group == null) {
return Collections.emptySet();
}
serviceNodes = group.getControllerServices(true);
}
if (group == null) {
return Collections.emptySet();
}
serviceNodes = group.getControllerServices(true);
}
final Set<String> identifiers = new HashSet<>();
for (final ControllerServiceNode serviceNode : serviceNodes) {
if (requireNonNull(serviceType).isAssignableFrom(serviceNode.getProxiedControllerService().getClass())) {
identifiers.add(serviceNode.getIdentifier());
}
}
return identifiers;
return serviceNodes.stream()
.filter(service -> serviceType.isAssignableFrom(service.getProxiedControllerService().getClass()))
.map(ControllerServiceNode::getIdentifier)
.collect(Collectors.toSet());
}
@Override
public String getControllerServiceName(final String serviceIdentifier) {
final ControllerServiceNode node = getControllerServiceNode(serviceIdentifier);