Skip to content

Commit

Permalink
fix(LAB-3223): Avoid getting ROTATION_JOB not existing error when get…
Browse files Browse the repository at this point in the history
…ting assets with SDK (#1801)

Co-authored-by: Sihem Tchabi <[email protected]>
  • Loading branch information
stchabi and Sihem Tchabi authored Oct 25, 2024
1 parent a1a6cec commit d1e580e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kili/services/label_data_parsing/json_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __init__(

# all job names in the json response should be in the json interface too
for job_name in json_response:
if job_name not in json_interface:
if job_name not in json_interface and job_name not in IGNORED_JOBS:
raise JobNotExistingError(job_name)

# define the list of job names to parse
Expand Down

0 comments on commit d1e580e

Please sign in to comment.