~soren/nova/logdir-flag

« back to all changes in this revision

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

  • Committer: Tarmac
  • Author(s): Vishvananda Ishaya
  • Date: 2010-11-17 21:49:25 UTC
  • mfrom: (401.1.1 fix-trunk)
  • Revision ID: hudson@openstack.org-20101117214925-oa1ywruzi5kfdcbg
Fixes eventlet race condition in cloud tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
390
390
                     filter_by(deleted=can_read_deleted(context)).\
391
391
                     first()
392
392
    if not result:
393
 
        raise exception.NotFound('No fixed ip for address %s' % address)
 
393
        raise exception.NotFound('No floating ip for address %s' % address)
394
394
 
395
395
    return result
396
396