From 7a108020b38b67835a6cb5c0bec22110deaf219c Mon Sep 17 00:00:00 2001 From: Stefan Reiter Date: Tue, 19 Nov 2019 12:23:51 +0100 Subject: [PATCH] refactor: vm_mon_cmd is now Monitor::mon_cmd Signed-off-by: Stefan Reiter --- PVE/Service/pvestatd.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PVE/Service/pvestatd.pm b/PVE/Service/pvestatd.pm index 7243702f..92d94809 100755 --- a/PVE/Service/pvestatd.pm +++ b/PVE/Service/pvestatd.pm @@ -18,6 +18,7 @@ use PVE::Network; use PVE::Cluster qw(cfs_read_file); use PVE::Storage; use PVE::QemuServer; +use PVE::QemuServer::Monitor; use PVE::LXC; use PVE::LXC::Config; use PVE::RPCEnvironment; @@ -154,7 +155,7 @@ sub auto_balloning { next if $target == $current; # no need to change $log->("BALLOON $vmid to $target (%d)\n", $target - $current); - eval { PVE::QemuServer::vm_mon_cmd($vmid, "balloon", value => $target) }; + eval { PVE::QemuServer::Monitor::mon_cmd($vmid, "balloon", value => $target) }; warn $@ if $@; } }