Changeset 1018


Ignore:
Timestamp:
Oct 3, 2008, 8:45:49 PM (16 years ago)
Author:
broder
Message:

Update SQLAlchemy code in sipb-xen-dns

Location:
trunk/packages/sipb-xen-dns
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/sipb-xen-dns/debian/changelog

    r1004 r1018  
     1sipb-xen-dns (1.06) unstable; urgency=low
     2
     3  * Fix the SQLAlchemy calls
     4
     5 -- Evan Broder <broder@mit.edu>  Fri, 03 Oct 2008 20:44:23 -0400
     6
    17sipb-xen-dns (1.05.1) unstable; urgency=low
    28
  • trunk/packages/sipb-xen-dns/files/usr/sbin/sipb-xen-dns

    r1002 r1018  
    110110                        [], []))
    111111
    112                 value = invirt.database.Machine.get_by(name=host)
     112                value = invirt.database.Machine.query().filter_by(name=host).one()
    113113                if value is None or not value.nics:
    114114                    return defer.fail(failure.Failure(dns.AuthoritativeDomainError(name)))
Note: See TracChangeset for help on using the changeset viewer.