Changes
f1b9ac5a and
9f6ff7e3 were aimed at improving the robustness
of the sync_state method. However both missed switching from spawn_n
to spawn to properly deal with raised exceptions.
Change-Id: Ieda4a5ecca63de67d8a9757962e7e3383fd9c9ea
Related-bug: #
1257514
'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'))