Skip to content
Snippets Groups Projects
Commit a4ecf527 authored by Blake Fitch's avatar Blake Fitch
Browse files

add debug line to show metadata_dict passed to confirmed_put()

parent a85ebb65
No related branches found
Tags STAG-2024-07-07-12-40-21
No related merge requests found
......@@ -360,6 +360,10 @@ def confirmed_put( irods_sesh, file_pathname, new_obj_ipath, metadata_dict=None,
+ " replace_existing " + str( replace_existing)
+ " skip_on_zero_len " + str( skip_on_zero_len ) )
if metadata_dict != None:
logging.debug( f"metadata_dict: {metadata_dict}" )
# NOTE: this routine uploades the file as a temporary iRODS object.
# Common sense suggests checking if the objct already exsists, a rare condition first.
# The trouble is, that requires checksumming the new object before uploading and
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment