Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
master resolve bug that causes materialization to continue after job …
…error

Signed-off-by: James Crabtree <james.crabtree@sailpoint.com>
  • Loading branch information
james-crabtree-sp committed Oct 25, 2023
commit 5a8018d40dca3f66e1cadc7650614e0a43db8e97
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,10 @@ def _materialize_one(
total_pods,
)
offset += batch_size
if offset >= total_pods:
if (
offset >= total_pods
or job.status() == MaterializationJobStatus.ERROR
):
break
else:
job_id = str(uuid.uuid4())
Expand Down