Browse Source

scripts: raise max lockage in autotest

master
Andrew Tridgell 9 years ago
parent
commit
c2a12b55a0
  1. 2
      Tools/scripts/build_autotest.sh

2
Tools/scripts/build_autotest.sh

@ -40,7 +40,7 @@ lock_file() { @@ -40,7 +40,7 @@ lock_file() {
if test -f "$lck" && kill -0 $pid 2> /dev/null; then
LOCKAGE=$(($(date +%s) - $(stat -c '%Y' "build.lck")))
test $LOCKAGE -gt 7200 && {
test $LOCKAGE -gt 30000 && {
echo "old lock file $lck is valid for $pid with age $LOCKAGE seconds"
}
return 1

Loading…
Cancel
Save