Skip to content

Commit 5a4e485

Browse files
committed
make sure to strip space
1 parent e606891 commit 5a4e485

File tree

1 file changed

+2
-2
lines changed
  • api/python/ai/chronon/repo

1 file changed

+2
-2
lines changed

api/python/ai/chronon/repo/gcp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,11 +423,11 @@ def run(self):
423423
]
424424
if dataproc_submitter_logs:
425425
log = dataproc_submitter_logs[0]
426-
job_id = log[
426+
job_id = (log[
427427
log.index(dataproc_submitter_id_str)
428428
+ len(dataproc_submitter_id_str)
429429
+ 1 :
430-
]
430+
]).strip()
431431
print(
432432
"""
433433
<-----------------------------------------------------------------------------------

0 commit comments

Comments
 (0)