From 4dcee2dc55a2b8666680b0ac3cd69cc46ce67a0c Mon Sep 17 00:00:00 2001 From: Jake Rosenberg Date: Wed, 21 Aug 2024 08:28:18 -0700 Subject: [PATCH] fix wrong argument being sent to fedora ingester (#1409) --- .../api/projects_v2/operations/project_publish_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/designsafe/apps/api/projects_v2/operations/project_publish_operations.py b/designsafe/apps/api/projects_v2/operations/project_publish_operations.py index 2cdd75c778..8c56e788e6 100644 --- a/designsafe/apps/api/projects_v2/operations/project_publish_operations.py +++ b/designsafe/apps/api/projects_v2/operations/project_publish_operations.py @@ -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