Skip to content

Commit

Permalink
fix(ingestion): fix datajob patcher
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker committed Jul 2, 2024
1 parent 8d5f0f3 commit f467964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metadata-ingestion/src/datahub/specific/datajob.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def add_input_dataset_field(
DataJobInputOutput.ASPECT_NAME,
"add",
path=f"/inputDatasetFields/{self.quote(input_urn)}",
value=input_edge,
value={},
)
return self

Expand Down Expand Up @@ -504,7 +504,7 @@ def add_output_dataset_field(
DataJobInputOutput.ASPECT_NAME,
"add",
path=f"/outputDatasetFields/{self.quote(output_urn)}",
value=output_edge,
value={},
)
return self

Expand Down

0 comments on commit f467964

Please sign in to comment.