Activity log for bug #1499038

Date Who What changed Old value New value Message
2015-09-23 18:30:42 Itisha Dewan bug added bug
2015-09-23 18:49:18 Itisha Dewan glance: assignee Itisha Dewan (ishadewan07)
2015-09-23 18:57:38 Nikhil Komawar glance: status New Triaged
2015-09-23 18:57:40 Nikhil Komawar glance: importance Undecided Wishlist
2015-09-24 20:06:33 OpenStack Infra glance: status Triaged In Progress
2015-09-26 16:29:53 Itisha Dewan summary Redundant check for None value in api/v1/images.py More explicit way of checking presence of image metadata in api/v1/images.py
2015-09-26 16:31:49 Itisha Dewan description images.py if (orig_status == 'active' and image_meta.get(key) is not None and image_meta.get(key) != orig_image_meta.get(key)): We do not need to check if the immutable image metadata is None or not. All that we care if whether or not a new value of image metadata is passed. The 'get' operation returns None anyway if the key is not present in the dictionary. images.py: if (orig_status == 'active' and image_meta.get(key) is not None                    and image_meta.get(key) != orig_image_meta.get(key)): The checking for the presence of image metadata can be made more explicit, rather than checking if it is None or not.
2015-10-02 13:30:17 OpenStack Infra glance: status In Progress Fix Committed
2015-12-02 22:12:43 Doug Hellmann glance: status Fix Committed Fix Released