Skip to content

Commit ab67409

Browse files
committed
monitorLog.sh interval default to 3s. simplier printing of situational config files
1 parent 4771e38 commit ab67409

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

operator/src/main/resources/scripts/startServer.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function waitUntilShutdown() {
103103
${SCRIPTPATH}/tailLog.sh ${SERVER_OUT_FILE} &
104104
fi
105105
FAIL_BOOT_ON_SITUATIONAL_CONFIG_ERROR=${FAIL_BOOT_ON_SITUATIONAL_CONFIG_ERROR:-true}
106-
SERVER_OUT_MONITOR_INTERVAL=${SERVER_OUT_MONITOR_INTERVAL:-30}
106+
SERVER_OUT_MONITOR_INTERVAL=${SERVER_OUT_MONITOR_INTERVAL:-3}
107107
if [ ${FAIL_BOOT_ON_SITUATIONAL_CONFIG_ERROR} == 'true' ] ; then
108108
${SCRIPTPATH}/monitorLog.sh ${SERVER_OUT_FILE} ${SERVER_OUT_MONITOR_INTERVAL} &
109109
fi
@@ -143,7 +143,7 @@ function copySitCfg() {
143143
for local_fname in ${src_dir}/${fil_prefix}*.xml ; do
144144
copyIfChanged $local_fname $tgt_dir/`basename ${local_fname/${fil_prefix}//}`
145145
trace "Printing contents of situational configuration file $local_fname:"
146-
echo `cat $local_fname`
146+
cat $local_fname
147147
done
148148
fi
149149

0 commit comments

Comments
 (0)