Skip to content

Commit 003a69c

Browse files
committed
1. Bumps spring version to 5.1.20.
2. Optimises startup script from user.
1 parent b6e6a33 commit 003a69c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

bin/roll_pair/egg_pair_bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ONE_ARG_LIST=(
2626
)
2727

2828
get_property() {
29-
property_value=`grep $2 $1 | cut -d '=' -f 2-`
29+
property_value=`grep $2 $1 | awk -F '=' '{if($2!~/^#/) print $2}'`
3030
if [[ -z ${property_value} ]]; then
3131
property_value=$3
3232
fi
@@ -196,4 +196,4 @@ echo "${cmd}"
196196
${cmd} >> ${EGGROLL_LOGS_DIR}/${EGGROLL_LOG_FILE}.out 2>${EGGROLL_LOGS_DIR}/${EGGROLL_LOG_FILE}.err &
197197
egg_pair_pid=$!
198198
echo "egg_pair processor id:$processor_id, os process id:${egg_pair_pid}" >> ${EGGROLL_LOGS_DIR}/pid.txt
199-
strace -o ${EGGROLL_LOGS_DIR}/strace-${processor_id}.log -e trace=process -tt -p ${egg_pair_pid} &
199+
strace -o ${EGGROLL_LOGS_DIR}/strace-${processor_id}.log -e trace=process -tt -p ${egg_pair_pid} &

jvm/roll_site/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</parent>
3434

3535
<properties>
36-
<spring.version>5.1.14.RELEASE</spring.version>
36+
<spring.version>5.1.20.RELEASE</spring.version>
3737
</properties>
3838

3939
<dependencies>

0 commit comments

Comments
 (0)