Comment 4 for bug 1615699

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to panko (master)

Reviewed: https://review.openstack.org/372851
Committed: https://git.openstack.org/cgit/openstack/panko/commit/?id=272c872f2fe9d0658f059538c019836d093a5486
Submitter: Jenkins
Branch: master

commit 272c872f2fe9d0658f059538c019836d093a5486
Author: Amy Fong <email address hidden>
Date: Thu Sep 22 13:51:23 2016 -0400

    Enable paginate query for event listing

    sorting and marker options are enabled for event listing (for sqlalchemy only)
    using oslob.db.

        sort -- list of sorting criteria. Each sorting option has to format
                <sort key>:<sort direction>

                Valid sort keys: message_id, generated
                Valid sort directions: asc (ascending), desc (descending)
                        This defaults to asc if unspecified

                If sort list is unspecified, this defaults to
                ['generated:asc', 'message_id:asc']

        marker -- If specified, assumed to be an integer and assumed to be the
                  message id of the last object on the previous page of the results

    limit is still available and supported for non sqlalchemy databases

    Closes-bug: #1615699
    Change-Id: I0441ca6283be5859c09c3d381ffbb52ca4a79eca