Activity log for bug #1541615

Date Who What changed Old value New value Message
2016-02-03 22:07:58 Jean-Emile DARTOIS bug added bug
2016-02-03 22:13:19 Jean-Emile DARTOIS summary improving the name of the variable improving the name of the variable in basic_consolidation
2016-02-03 22:13:24 Jean-Emile DARTOIS watcher: importance Undecided Critical
2016-02-03 22:13:27 Jean-Emile DARTOIS watcher: importance Critical Low
2016-02-03 22:13:35 Jean-Emile DARTOIS watcher: milestone mitaka-3
2016-02-03 22:23:18 Jean-Emile DARTOIS summary improving the name of the variable in basic_consolidation improve the name of the variable in basic_consolidation.py
2016-02-03 22:25:43 Jean-Emile DARTOIS description Good variable names are: a) short / easy to type, b) easy to remember, c) understandable / communicative. Good variable names are: a) short / easy to type, b) easy to remember, c) understandable / communicative. For example : replace : s = sorted(score, reverse=True, key=lambda x: (x[1])) by sorted_score = sorted(score, reverse=True, key=lambda x: (x[1])) def calculate_m(self, v, current_model, node_to_release, s): m = 0 by def calculate_m(self, sorted_vms, current_model, node_to_release, sorted_score): number_of_migration = 0
2016-02-03 22:25:49 Jean-Emile DARTOIS tags low-hanging-fruit
2016-02-04 05:31:32 Steve Wilkerson watcher: assignee Steve Wilkerson (sw5822)
2016-02-04 13:45:42 OpenStack Infra watcher: status New In Progress
2016-02-18 10:22:52 OpenStack Infra watcher: status In Progress Fix Released