mirror of https://github.com/apache/nifi.git
Merge branch 'develop' of http://git-wip-us.apache.org/repos/asf/incubator-nifi into develop
This commit is contained in:
commit
548f6d0835
|
@ -797,6 +797,11 @@ public final class DtoFactory {
|
|||
copySnippet.getRemoteProcessGroups().add(copy(remoteGroup));
|
||||
}
|
||||
}
|
||||
if (originalSnippet.getControllerServices() != null) {
|
||||
for (final ControllerServiceDTO controllerService : originalSnippet.getControllerServices()) {
|
||||
copySnippet.getControllerServices().add(copy(controllerService));
|
||||
}
|
||||
}
|
||||
|
||||
return copySnippet;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue