Merge "Switch to using spawn to properly treat errors during sync_state"

This commit is contained in:
Jenkins 2013-12-16 01:10:55 +00:00 committed by Gerrit Code Review
commit 22886eb49f
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class DhcpAgent(manager.Manager):
'network %s'), deleted_id)
for network in active_networks:
pool.spawn_n(self.safe_configure_dhcp_for_network, network)
pool.spawn(self.safe_configure_dhcp_for_network, network)
pool.waitall()
LOG.info(_('Synchronizing state complete'))