~0x44/nova/bug838466

« back to all changes in this revision

Viewing changes to nova/db/sqlalchemy/api.py

  • Committer: Trey Morris
  • Date: 2011-06-30 19:20:59 UTC
  • mfrom: (1236 nova)
  • mto: This revision was merged to the branch mainline in revision 1237.
  • Revision ID: trey.morris@rackspace.com-20110630192059-pi1p516i50t8pc06
trunk merge with migration renumbering

Show diffs side-by-side

added added

removed removed

Lines of Context:
3042
3042
    if not zone:
3043
3043
        raise exception.ZoneNotFound(zone_id=zone_id)
3044
3044
    zone.update(values)
3045
 
    zone.save()
 
3045
    zone.save(session=session)
3046
3046
    return zone
3047
3047
 
3048
3048