From 38feac2f1e8b77129d44b66911596af027c4048b Mon Sep 17 00:00:00 2001 From: shirey Date: Fri, 1 Mar 2024 12:14:57 -0500 Subject: [PATCH] disable metadata.json file generation during publication --- src/app.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app.py b/src/app.py index aae9d4d5..03f6e12c 100644 --- a/src/app.py +++ b/src/app.py @@ -1028,18 +1028,18 @@ def publish_datastage(identifier): out = entity_instance.clear_cache(e_id) # Write out the metadata.json file after all processing has been done... - ds_path = ingest_helper.dataset_directory_absolute_path(dataset_data_access_level, - dataset_group_uuid, dataset_uuid, False) - md_file = os.path.join(ds_path, "metadata.json") - json_object = entity_json_dumps(entity_instance, dataset_uuid) - logger.info(f"publish_datastage; writing metadata.json file: '{md_file}'; " - f"containing: '{json_object}'") - try: - with open(md_file, "w") as outfile: - outfile.write(json_object) - except Exception as e: - logger.exception(f"Fatal error while writing md_file {md_file}; {str(e)}") - return jsonify({"error": f"{dataset_uuid} problem writing metadata.json file."}), 500 +# ds_path = ingest_helper.dataset_directory_absolute_path(dataset_data_access_level, +# dataset_group_uuid, dataset_uuid, False) +# md_file = os.path.join(ds_path, "metadata.json") +# json_object = entity_json_dumps(entity_instance, dataset_uuid) +# logger.info(f"publish_datastage; writing metadata.json file: '{md_file}'; " +# f"containing: '{json_object}'") +# try: +# with open(md_file, "w") as outfile: +# outfile.write(json_object) +# except Exception as e: +# logger.exception(f"Fatal error while writing md_file {md_file}; {str(e)}") +# return jsonify({"error": f"{dataset_uuid} problem writing metadata.json file."}), 500 if no_indexing_and_acls: r_val = {'acl_cmd': acls_cmd, 'donors_for_indexing': donors_to_reindex}