fix parameter passing

since we are using *args dont pass list

Change-Id: I10e50ad5f2e8d9f3b8178cc247e13d75f2725745
This commit is contained in:
Eyal
2016-03-22 11:04:37 +02:00
parent 7e67fab32b
commit cc6fb67cb9
3 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ class HostSynchronizer(NovaBase):
self.filter_none_compute_hosts(self.client.hosts.list()),
self.NOVA_HOST,
sync_mode,
['manager'])
'manager')
def get_changes(self, sync_mode):
pass

View File

@@ -29,7 +29,7 @@ class InstanceSynchronizer(NovaBase):
self.filter_instances(self.client.servers.list()),
self.NOVA_INSTANCE,
sync_mode,
['manager'])
'manager')
def get_changes(self, sync_mode):
pass

View File

@@ -31,7 +31,7 @@ class ZoneSynchronizer(NovaBase):
self.client.availability_zones.list()),
self.NOVA_ZONE,
sync_mode,
['manager'])
'manager')
def get_changes(self, sync_mode):
pass