From 7f6373239fe8f0ce713e7ec6d35ae2831f382840 Mon Sep 17 00:00:00 2001 From: Andy LoPresto Date: Wed, 8 Mar 2017 16:44:49 -0800 Subject: [PATCH] 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 --- .../nifi-resources/src/main/resources/conf/bootstrap.conf | 3 +++ 1 file changed, 3 insertions(+) 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 67c31223f8..09126b2f8e 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 ###