Skip to content

Commit

Permalink
fix descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Rocha committed Feb 4, 2017
1 parent 234ea24 commit cf7c910
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions konker.scripts/docker-demo/build/mongodb/sleepstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ do
if [ "$RETRYCOUNT" -lt "$MAXRETRY" ]; then
MONGOISREADY=`nc 127.0.0.1 27017 </dev/null; echo $?`;
if [ $MONGOISREADY == 0 ]; then
echo 'Mongo is ready!';
echo 'Konker Database is ready!';
else
echo "Waiting for mongo..."$RETRYCOUNT" of "$MAXRETRY;
echo "Waiting for konker database..."$RETRYCOUNT" of "$MAXRETRY;
sleep 10;
RETRYCOUNT=$(($RETRYCOUNT+1));
fi
else
sleep 5;
MONGOISREADY=0;
echo "Max tries("$MAXRETRY") was reached, Mongodb is unstable..stop container...";
echo "Max tries("$MAXRETRY") was reached, Konker database is unstable..stop container...";
halt;
fi
done
4 changes: 2 additions & 2 deletions konker.scripts/docker-demo/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ fi
echo ""
echo ""
echo "################################ Konker Open Platform ############################################"
echo "## Version: 0.2.0-RC2 ##"
echo "## Release date: 2017-01-03 ##"
echo "## Version: 0.2.0-RC3 ##"
echo "## Release date: 2017-02-04 ##"
echo "## Licence: Apache V2 (http://www.apache.org/licenses/LICENSE-2.0) ##"
echo "## Need Support?: [email protected] ##"
echo "##################################################################################################"
Expand Down

0 comments on commit cf7c910

Please sign in to comment.