Repository: nifi Updated Branches: refs/heads/master 37e9c5efc -> 7f6373239
NIFI-3313 Added explicit Java runtime argument to default bootstrap.conf to avoid blocking on VM deployment. This closes #1579. Signed-off-by: Andy LoPresto <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/7f637323 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/7f637323 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/7f637323 Branch: refs/heads/master Commit: 7f6373239fe8f0ce713e7ec6d35ae2831f382840 Parents: 37e9c5e Author: Andy LoPresto <[email protected]> Authored: Wed Mar 8 16:44:49 2017 -0800 Committer: Andy LoPresto <[email protected]> Committed: Wed Mar 8 19:24:43 2017 -0800 ---------------------------------------------------------------------- .../nifi-resources/src/main/resources/conf/bootstrap.conf | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/7f637323/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/bootstrap.conf ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/bootstrap.conf b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/bootstrap.conf index 67c3122..09126b2 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/bootstrap.conf +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-resources/src/main/resources/conf/bootstrap.conf @@ -54,6 +54,9 @@ java.arg.14=-Djava.awt.headless=true # Master key in hexadecimal format for encrypted sensitive configuration values nifi.bootstrap.sensitive.key= +# Sets the provider of SecureRandom to /dev/urandom to prevent blocking on VMs +java.arg.15=-Djava.security.egd=file:/dev/urandom + ### # Notification Services for notifying interested parties when NiFi is stopped, started, dies ###
