~ubuntu-cloud-archive/ubuntu/precise/nova/trunk

« back to all changes in this revision

Viewing changes to nova/db/api.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Soren Hansen
  • Date: 2012-09-07 17:49:53 UTC
  • mfrom: (1.1.61)
  • Revision ID: package-import@ubuntu.com-20120907174953-oapuvix1jxm830he
Tags: 2012.2~rc1~20120907.15996-0ubuntu1
[ Chuck Short ]
* New upstream release.
* debian/nova-common.postinst: Drop nova_sudoers permission changing
  since we do it in the debian/rules. (LP: #995285)

[ Soren Hansen ]
* Update debian/watch to account for symbolically named tarballs and
  use newer URL.
* Fix Launchpad URLs in debian/watch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
582
582
 
583
583
 
584
584
def instance_get_all_by_filters(context, filters, sort_key='created_at',
585
 
                                sort_dir='desc'):
 
585
                                sort_dir='desc', limit=None, marker=None):
586
586
    """Get all instances that match all filters."""
587
587
    return IMPL.instance_get_all_by_filters(context, filters, sort_key,
588
 
                                            sort_dir)
 
588
                                            sort_dir, limit=limit,
 
589
                                            marker=marker)
589
590
 
590
591
 
591
592
def instance_get_active_by_window(context, begin, end=None, project_id=None,