mirror of https://github.com/apache/nifi.git
Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/incubator-nifi into develop
This commit is contained in:
commit
7f9dff52b0
|
@ -194,15 +194,23 @@ public final class SnippetUtils {
|
|||
}
|
||||
|
||||
private void addControllerServicesToSnippet(final FlowSnippetDTO snippetDto) {
|
||||
for ( final ProcessorDTO processorDto : snippetDto.getProcessors() ) {
|
||||
final Set<ProcessorDTO> processors = snippetDto.getProcessors();
|
||||
if ( processors != null ) {
|
||||
for ( final ProcessorDTO processorDto : processors ) {
|
||||
addControllerServicesToSnippet(snippetDto, processorDto);
|
||||
}
|
||||
}
|
||||
|
||||
for ( final ProcessGroupDTO processGroupDto : snippetDto.getProcessGroups() ) {
|
||||
final Set<ProcessGroupDTO> childGroups = snippetDto.getProcessGroups();
|
||||
if ( childGroups != null ) {
|
||||
for ( final ProcessGroupDTO processGroupDto : childGroups ) {
|
||||
final FlowSnippetDTO childGroupDto = processGroupDto.getContents();
|
||||
if ( childGroupDto != null ) {
|
||||
addControllerServicesToSnippet(childGroupDto);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void addControllerServicesToSnippet(final FlowSnippetDTO snippet, final ProcessorDTO processorDto) {
|
||||
final ProcessorConfigDTO configDto = processorDto.getConfig();
|
||||
|
|
Loading…
Reference in New Issue