Skip to content

Commit

Permalink
fix wrong argument being sent to fedora ingester (#1409)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosenb authored Aug 21, 2024
1 parent 48b69f3 commit 4dcee2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ def publish_project(
args=[project_id, version], queue="default"
)
ingest_pub_fedora_async.apply_async(
args=[project_id, version, True], queue="default"
args=[project_id, version, False], queue="default"
)

return pub_metadata
Expand Down

0 comments on commit 4dcee2d

Please sign in to comment.