Activity log for bug #1606785

Date Who What changed Old value New value Message
2016-07-27 06:28:20 Eli Qiao bug added bug
2016-07-27 06:29:50 Eli Qiao magnum: assignee Eli Qiao (taget-9)
2016-07-27 06:30:13 Eli Qiao description We limit the bay's name to 255, but when we create a heat stack, we have the stack_name as: stack_name = '%s-%s' % (bay.name, short_id.generate_id()) but in heat, we see that: 147 message = _('Invalid stack name %s must contain ' 148 'only alphanumeric or \"_-.\" characters, ' 149 'must start with alpha and must be 255 ' 150 'characters or less.') % name the length of bay's name should be 255 - len(short_id.generate_id()) We limit the bay's name to 255, but when we create a heat stack, we have the stack_name as: stack_name = '%s-%s' % (bay.name, short_id.generate_id()) but in heat, we see that: 147 message = _('Invalid stack name %s must contain '  148 'only alphanumeric or \"_-.\" characters, '  149 'must start with alpha and must be 255 '  150 'characters or less.') % name the length of bay's name should be 255 - len(short_id.generate_id()) -1 = 255-12-1 = 242
2016-07-27 06:35:19 OpenStack Infra magnum: status New In Progress
2016-07-27 08:09:23 Eli Qiao magnum: importance Undecided Low
2016-08-02 17:19:03 OpenStack Infra magnum: status In Progress Fix Released