1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Increase the timeout to deal with heavily loaded hosts.

svn path=/nixos/trunk/; revision=16952
This commit is contained in:
Eelco Dolstra 2009-09-03 00:05:38 +00:00
parent a27680ea17
commit 2b5c9a78ff

View file

@ -94,7 +94,7 @@ sub connect {
while (1) {
last if -e ($self->{stateDir} . "/running");
sleep 1;
die ("VM " . $self->{name} . " timed out") if $try++ > 180;
die ("VM " . $self->{name} . " timed out") if $try++ > 300;
}
while (1) {