** Changed in: glance
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to Glance.
https://bugs.launchpad.net/bugs/1154777
Title:
Image Member index not tracked in sqlalchemy models
Status in OpenStack Image Registry and Delivery Service (Glance):
Fix Released
Bug description:
Migration 008 creates an index on the image members table
Index('ix_image_members_image_id_member', image_members.c.image_id,
image_members.c.member)
But the Image member model class does not reflect this
class ImageMember(BASE, ModelBase):
"""Represents an image members in the datastore"""
__tablename__ = 'image_members'
__table_args__ = (UniqueConstraint('image_id', 'member'), {})
To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/1154777/+subscriptions
--
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to : [email protected]
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help : https://help.launchpad.net/ListHelp