Skip to content

Commit

Permalink
Merge branch 'release-2.3.3' into release-2.3.4
Browse files Browse the repository at this point in the history
Conflicts:
	project/Build.scala
  • Loading branch information
Stephan Zuercher committed Sep 20, 2012
2 parents 8c95afc + f3a47af commit ea9d4da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ object Kestrel extends Build {
).settings(
name := "kestrel",
organization := "net.lag",
version := "2.3.3-SNAPSHOT",
version := "2.3.4-SNAPSHOT",
scalaVersion := "2.9.1",

// time-based tests cannot be run in parallel
Expand Down
6 changes: 3 additions & 3 deletions src/scripts/kestrel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ case "$1" in
tries=$((tries + 1))
if [ $tries -ge 15 ]; then
echo "FAILED SOFT SHUTDOWN, TRYING HARDER"
if [ -f $pidfile ]; then
kill $(cat $pidfile)
if [ -f $daemon_pidfile ]; then
kill $(cat $daemon_pidfile)
else
echo "CAN'T FIND PID, TRY KILL MANUALLY"
exit 1
Expand All @@ -124,7 +124,7 @@ case "$1" in
hardtries=$((hardtries + 1))
if [ $hardtries -ge 5 ]; then
echo "FAILED HARD SHUTDOWN, TRY KILL -9 MANUALLY"
kill -9 $(cat $pidfile)
kill -9 $(cat $daemon_pidfile)
fi
sleep 1
done
Expand Down

0 comments on commit ea9d4da

Please sign in to comment.