6505c36ecc
virtman-netstats-fix.diff virtman-finish-button-fix.diff virtman-shutoff-fix.diff virtman-set-has-window-fix.diff virtman-grep-fix.diff virtman-no-cd-present-fix.diff virtman-resize-menu-fix.diff virtman-vcpu-count-fix.diff virtman-storage-pool-fix.diff virtman-domain-name-fix.diff virtman-unapplied-changes-fix.diff virtman-details-fix.diff virtman-delete-fix.diff virtman-collidelist-fix.diff virtman-char-device-mode-fix.diff virtinst-hv-version-fix.diff virtinst-initrd-inject-fix.diff virtinst-initrd-inject2-fix.diff virtinst-no-volume-fix.diff virtinst-prompts-fix.diff virtinst-cpu-model-name-fix.diff virtinst-xml-clear-fix.diff virtinst-remote-storage-fix.diff virtinst-error-message-fix.diff virtinst-typo-fix.diff virtinst-cdrom.diff virtinst-storage-ocfs2.diff OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=63
21 lines
768 B
Diff
21 lines
768 B
Diff
|
|
Subject: domain: Fix typo that broke net stats gathering
|
|
From: Cole Robinson crobinso@redhat.com Wed Jul 27 12:02:29 2011 -0400
|
|
Date: Wed Jul 27 12:02:29 2011 -0400:
|
|
Git: 62a762e77f2f5e5298ececda6fb4638b8488da4a
|
|
|
|
|
|
Index: virt-manager-0.9.0/src/virtManager/domain.py
|
|
===================================================================
|
|
--- virt-manager-0.9.0.orig/src/virtManager/domain.py
|
|
+++ virt-manager-0.9.0/src/virtManager/domain.py
|
|
@@ -1448,7 +1448,7 @@ class vmmDomain(vmmLibvirtObject):
|
|
def _sample_network_traffic(self):
|
|
rx = 0
|
|
tx = 0
|
|
- if (not self._stats_net_supported or not
|
|
+ if (not self._stats_net_supported or
|
|
not self._enable_net_poll or
|
|
not self.is_active()):
|
|
return rx, tx
|