You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Unless I'm misunderstanding, I believe the limit for WorkspaceClient().jobs.list(limit=x) should be 100, according to the cli documentation. Right now, I'm getting an error that the limit can be no more than 25.
Reproduction
from databricks.sdk import WorkspaceClient
w = WorkspaceClient(host='', token='')
for job in w.jobs.list(limit=99):
print(job)
Expected behavior
This should print out the job objects. Currently it only works for 25 items or less.
Proposed Solution
Increase limit of the number of objects returned
Additional Context
Add any other context, references or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Description
Unless I'm misunderstanding, I believe the limit for WorkspaceClient().jobs.list(limit=x) should be 100, according to the cli documentation. Right now, I'm getting an error that the limit can be no more than 25.
Reproduction
from databricks.sdk import WorkspaceClient
w = WorkspaceClient(host='', token='')
for job in w.jobs.list(limit=99):
print(job)
Expected behavior
This should print out the job objects. Currently it only works for 25 items or less.
Proposed Solution
Increase limit of the number of objects returned
Additional Context
Add any other context, references or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: