]> git.proxmox.com Git - qemu-server.git/commitdiff
pass timeout to qmp open_connection
authorDietmar Maurer <dietmar@proxmox.com>
Tue, 25 Sep 2012 07:27:24 +0000 (09:27 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 25 Sep 2012 07:27:24 +0000 (09:27 +0200)
PVE/QMPClient.pm

index d026f4d4c3012203d96660a311b1890e84e6aa18..9829986ae77e82d340974e4d4128741ef85b4a0e 100755 (executable)
@@ -114,10 +114,12 @@ my $close_connection = sub {
 };
 
 my $open_connection = sub {
-    my ($self, $vmid) = @_;
+    my ($self, $vmid, $timeout) = @_;
 
     my $sname = PVE::QemuServer::qmp_socket($vmid);
 
+    $timeout = 1 if !$timeout;
+
     my $fh;
     my $starttime = [gettimeofday];
     my $count = 0;
@@ -129,7 +131,7 @@ my $open_connection = sub {
            die "unable to connect to VM $vmid socket - $!\n";
        }
        my $elapsed = tv_interval($starttime, [gettimeofday]);
-       if ($elapsed > 1) {
+       if ($elapsed >= $timeout) {
            die "unable to connect to VM $vmid socket - timeout after $count retries\n";
        }
        usleep(100000);
@@ -204,7 +206,7 @@ sub queue_execute {
        next if !scalar(@{$self->{queue}->{$vmid}}); # no commands for the VM
 
        eval {
-           my $fh = &$open_connection($self, $vmid);
+           my $fh = &$open_connection($self, $vmid, $timeout);
            my $cmd = { execute => 'qmp_capabilities', arguments => {} };
            unshift @{$self->{queue}->{$vmid}}, $cmd;
            $self->{mux}->set_timeout($fh, $timeout);