Merge "Remove unused params."

This commit is contained in:
Zuul 2018-05-15 11:02:28 +00:00 committed by Gerrit Code Review
commit 7b39d853b1
1 changed files with 3 additions and 4 deletions

View File

@ -401,8 +401,7 @@ def get_next_cron_triggers(time):
return IMPL.get_next_cron_triggers(time)
def get_expired_executions(expiration_time, limit=None, columns=(),
session=None):
def get_expired_executions(expiration_time, limit=None, columns=()):
return IMPL.get_expired_executions(
expiration_time,
limit,
@ -410,8 +409,8 @@ def get_expired_executions(expiration_time, limit=None, columns=(),
)
def get_superfluous_executions(max_finished_executions, limit=None, columns=(),
session=None):
def get_superfluous_executions(max_finished_executions, limit=None,
columns=()):
return IMPL.get_superfluous_executions(
max_finished_executions,
limit,