Repository: nifi Updated Branches: refs/heads/master 3c862a151 -> c9097e7db
NIFI-3541 Add copying of local network interface for DtoFactory RPG copy. This closes #1574 Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/c9097e7d Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/c9097e7d Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/c9097e7d Branch: refs/heads/master Commit: c9097e7db3015ce43c1aa8980cfeba55a6b871f7 Parents: 3c862a1 Author: Aldrin Piri <[email protected]> Authored: Wed Mar 8 12:50:55 2017 -0500 Committer: Matt Gilman <[email protected]> Committed: Thu Mar 9 08:23:28 2017 -0500 ---------------------------------------------------------------------- .../src/main/java/org/apache/nifi/web/api/dto/DtoFactory.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/c9097e7d/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/dto/DtoFactory.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/dto/DtoFactory.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/dto/DtoFactory.java index f5c1b88..4e238d2 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/dto/DtoFactory.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/dto/DtoFactory.java @@ -2879,6 +2879,7 @@ public final class DtoFactory { copy.setProxyPort(original.getProxyPort()); copy.setProxyUser(original.getProxyUser()); copy.setProxyPassword(original.getProxyPassword()); + copy.setLocalNetworkInterface(original.getLocalNetworkInterface()); copy.setContents(copyContents);
