diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-04-03 04:19:03 +0800 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-04-03 04:19:03 +0800 |
commit | 3bb948c48397a3721c1b568fcc4499d833731352 (patch) | |
tree | b81f82c2e6644f1e356c8967ae70b6cd3e4801b5 /Tools | |
parent | da08048084625d4d1fc055a3f3499518b7eb61be (diff) | |
download | freebsd-ports-gnome-3bb948c48397a3721c1b568fcc4499d833731352.tar.gz freebsd-ports-gnome-3bb948c48397a3721c1b568fcc4499d833731352.tar.zst freebsd-ports-gnome-3bb948c48397a3721c1b568fcc4499d833731352.zip |
Increase the nc poll timeout to better deal with network latencies.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/pollmachine | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/pollmachine b/Tools/portbuild/scripts/pollmachine index 6484bb37344c..ebacc2303f3d 100755 --- a/Tools/portbuild/scripts/pollmachine +++ b/Tools/portbuild/scripts/pollmachine @@ -18,7 +18,7 @@ fi if [ -z "${infoseek_host}" ]; then infoseek_host=$m fi -if (/usr/local/bin/nc -w 5 ${infoseek_host} ${infoseek_port} > ${buildroot}/${i}/loads/$m < /dev/null); then +if (/usr/local/bin/nc -w 15 ${infoseek_host} ${infoseek_port} > ${buildroot}/${i}/loads/$m < /dev/null); then if [ "${queue}" = 1 ]; then num=$(awk '{print $1}' ${buildroot}/${i}/loads/$m) if [ "$num" -lt "${maxjobs}" ]; then |