From: Aric Gardner Date: Fri, 31 Jan 2020 18:45:24 +0000 (-0500) Subject: Dont set jvm options to null X-Git-Tag: v0.51.0~12 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=1fb55e807d49e36b27d94d0c411c6907d2216068;p=releng%2Fglobal-jjb.git Dont set jvm options to null should be empty Signed-off-by: Aric Gardner Change-Id: I6a37b3922e9c40541d0e824178b33aee4c934703 --- diff --git a/shell/jenkins-configure-clouds.sh b/shell/jenkins-configure-clouds.sh index 5d394ad2..78e233e7 100644 --- a/shell/jenkins-configure-clouds.sh +++ b/shell/jenkins-configure-clouds.sh @@ -211,7 +211,7 @@ get_minion_options() { kpn_default="$(get_cfg "$(dirname "$cfg_file")/cloud.cfg" KEY_PAIR_NAME "jenkins-ssh")" key_pair_name=$(get_cfg "$cfg_file" KEY_PAIR_NAME "$kpn_default") num_executors=$(get_cfg "$cfg_file" NUM_EXECUTORS "1") - jvm_options=$(get_cfg "$cfg_file" JVM_OPTIONS "null") + jvm_options=$(get_cfg "$cfg_file" JVM_OPTIONS "") fs_root=$(get_cfg "$cfg_file" FS_ROOT "/w") connection_type=$(get_cfg "$cfg_file" CONNECTION_TYPE "SSH") launcher_factory=$(get_launcher_factory "$connection_type")