eladkal commented on code in PR #33472:
URL: https://github.com/apache/airflow/pull/33472#discussion_r1304600308
##########
airflow/providers/databricks/hooks/databricks.py:
##########
@@ -156,26 +156,37 @@ def submit_run(self, json: dict) -> int:
return response["run_id"]
def list_jobs(
- self, limit: int = 25, offset: int = 0, expand_tasks: bool = False,
job_name: str | None = None
+ self, limit: int = 25, offset: int | None = None, page_token: str |
None = None, expand_tasks: bool = False, job_name: str | None = None
Review Comment:
please add the new parameter last (to avoid breaking code of users who use
positional arguments)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]