You are viewing an old version of this page. View the current version.

    Compare with Current View Page History

    « Previous Version 2 Next »

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

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

    ==== CL 20002 ====
    @NEW: add new filtering options to Perl 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

    • No labels