Skip to content

Commit 96d74cc

Browse files
committed
Listing screen not loading issue fixed
1 parent 94aef11 commit 96d74cc

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

scheduler_jupyter_plugin/services/vertex.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -296,18 +296,13 @@ async def list_schedules(self, region_id, page_size=100, next_page_token=None):
296296
else:
297297
schedule_value = self.parse_schedule(cron)
298298

299-
gcs_notebook_source_uri = schedule.get("createNotebookExecutionJobRequest", {}) \
300-
.get("notebookExecutionJob", {}) \
301-
.get("gcsNotebookSource")
302-
303299
formatted_schedule = {
304300
"name": schedule.get("name"),
305301
"displayName": schedule.get("displayName"),
306302
"schedule": schedule_value,
307303
"status": schedule.get("state"),
308304
"createTime": schedule.get("createTime"),
309305
"nextRunTime": schedule.get("nextRunTime"),
310-
"gcsNotebookSourceUri": gcs_notebook_source_uri,
311306
"lastScheduledRunResponse": schedule.get(
312307
"lastScheduledRunResponse"
313308
),

0 commit comments

Comments
 (0)