浏览代码

Healthcheck correction

Vadim Surkov 6 年之前
父节点
当前提交
18fda2fc36
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      healthcheck.sh

+ 1 - 1
healthcheck.sh

@@ -2,7 +2,7 @@
 
 containerstart=`stat -c %Z /proc/1`
 curtime=`date +%s`
-if [[ $(($containerstart-$curtime)) -le "180" ]]; then
+if (( curtime-containerstart < 180 )); then
     echo "0"
     exit 0
 fi