Activity log for bug #1539039

Date Who What changed Old value New value Message
2016-01-28 12:02:49 Roman Sokolkov bug added bug
2016-01-28 13:14:59 Ivan Ponomarev fuel: status New Incomplete
2016-01-29 13:01:31 Roman Sokolkov description In "extensions/cluster_upgrade/upgrade.py" inside "copy_network_config" function there is a buggy for loop. Do not change dictionary while iterating over it. Following patch fixes the issue. @@ -154,7 +157,7 @@ class UpgradeHelper(object): new_net_manager.update(nets) vips = orig_net_manager.get_assigned_vips() - for ng_name in vips: + for ng_name in list(vips): if ng_name not in (consts.NETWORKS.public, consts.NETWORKS.management): vips.pop(ng_name) Env: MOS 7.0 In "extensions/cluster_upgrade/upgrade.py" inside "copy_network_config" function there is a buggy for loop. Do not change dictionary while iterating over it. Following patch fixes the issue. @@ -154,7 +157,7 @@ class UpgradeHelper(object):          new_net_manager.update(nets)          vips = orig_net_manager.get_assigned_vips() - for ng_name in vips: + for ng_name in list(vips):              if ng_name not in (consts.NETWORKS.public,                                 consts.NETWORKS.management):                  vips.pop(ng_name)
2016-03-02 10:15:51 Alexander Kislitsky fuel: assignee MOS Maintenance (mos-maintenance)
2016-03-02 10:15:54 Alexander Kislitsky fuel: milestone 7.0-updates
2016-03-02 10:16:00 Alexander Kislitsky fuel: importance Undecided Medium
2016-03-02 10:16:09 Alexander Kislitsky tags area-python
2016-03-09 16:53:41 Denis Meltsaykin fuel: assignee MOS Maintenance (mos-maintenance) Oleg S. Gelbukh (gelbuhos)
2016-03-09 16:53:54 Denis Meltsaykin fuel: status Incomplete New
2016-03-09 18:44:10 OpenStack Infra fuel: status New In Progress
2016-04-11 10:30:41 OpenStack Infra fuel: status In Progress Fix Committed
2016-08-24 21:29:03 OpenStack Infra tags area-python area-python in-stable-mitaka