From 654d616407cc7271d818b8902a17e9dafcafbb2f 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. --- .../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 67c31223f81f..09126b2f8ed4 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 ###