~ubuntu-branches/ubuntu/raring/keystone/raring

« back to all changes in this revision

Viewing changes to keystone/catalog/backends/sql.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, James Page, Chuck Short, Adam Gandelman
  • Date: 2013-03-22 08:16:09 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20130322081609-mbb6d2ju5bvthsgu
Tags: 1:2013.1~rc1-0ubuntu1
[ James Page ]
* d/watch: Update uversionmangle to deal with upstream versioning
  changes, remove tarballs.openstack.org.
* d/rules: Stop using packaging specific test overrides when
  running unit tests.

[ Chuck Short ]
* New upstream release.
* debian/control: Clean-up build-depends
  - Dropped pylint not needed.
  - Dropped python-all-dev and python-support not needed.
  - Renamed python-oslo-config to python-oslo.config.
  - Dropped python-prettytable no longer needed.
  - Dropped pyhthon-novaclient no longer needed.
  - Dropped pep8 no longer needed.
 * debian/control:Clean-up depends:
  - Dropped python-prettytable no longer needed.
 * Update standards

[ Adam Gandelman ]
* d/control: Bump python-keystoneclient version requirement to >= 1:0.2.3.
* debian/keystone.postinst: Run pki_setup during configure to intitialize
  PKI infrastructure for signed tokens (now enabled by default).

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
class Endpoint(sql.ModelBase, sql.DictBase):
38
38
    __tablename__ = 'endpoint'
39
 
    attributes = ['id', 'interface', 'region', 'service_id', 'url']
 
39
    attributes = ['id', 'interface', 'region', 'service_id', 'url',
 
40
                  'legacy_endpoint_id']
40
41
    id = sql.Column(sql.String(64), primary_key=True)
 
42
    legacy_endpoint_id = sql.Column(sql.String(64))
41
43
    interface = sql.Column(sql.String(8), primary_key=True)
42
44
    region = sql.Column('region', sql.String(255))
43
45
    service_id = sql.Column(sql.String(64),