Versions Compared

    Key

    • This line was added.
    • This line was removed.
    • Formatting was changed.
    Comment: Published by Scroll Versions from this space and version 7.0-2

    ##############################################################################
    @RELEASE: 7.0-1a

    ##############################################################################

    ==== CL 20002 ====
    @NEW: add new filtering options to Python API's qb.jobinfo():

    • submittedBefore
    • submittedAfter
    • updatedBefore
    • updatedAfter

    Args specifying time may be in seconds since Unix epoch, or a datetime.date or datetime.datetime object.

    Examples:

    import qb
    qb.jobinfo(updatedAfter=1530680480, updatedBefore=1530680700)
    import datetime
    weekago = datetime.date.today() - datetime.timedelta(days=7)
    qb.jobinfo(submittedAfter=weekago)
    JIRA: QUBE-3353

    ==== CL 19999 ====
    @NEW: add new filtering options to qbjobs command: submittedBefore, submittedAfter, updatedBefore, updatedAfter. Option arg specifying time needs to be in seconds since Unix epoch.

    JIRA: QUBE-3353