From fd5f3d7077dddcb90e8a7f7906f89978341caf77 Mon Sep 17 00:00:00 2001 From: Justin Riley Date: Thu, 14 Jul 2016 23:11:29 -0400 Subject: [PATCH] monitor all vms not just one_auth user --- onedns/clients/one.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/onedns/clients/one.py b/onedns/clients/one.py index 0085169..5807ba0 100644 --- a/onedns/clients/one.py +++ b/onedns/clients/one.py @@ -10,6 +10,5 @@ class OneClient(object): self._vm_pool = oca.VirtualMachinePool(self._oca) def vms(self): - #self._vm_pool.info(filter=-1) - self._vm_pool.info() + self._vm_pool.info(filter=-1) return self._vm_pool