-
Defect
-
Resolution: Done
-
Major
-
None
-
None
-
None
-
8
-
Sprint 162
We are receiving a significant number of exceptions for people try to download files from the SRM. The end user email received indicates "SUCCESS". This is confusing to users.
Acceptance Criteria:
Indicate request is "success" in data transfer report and email if all files are were successfully transferred.
Indicate request is "partial success" in data transfer report and email if fewer than all files were successfully transferred (and at least one was successful).
Otherwise indicate the transfer "failed".
Wget and Curl scripts should only include the successful files.
Remove all caps from emails.
Indicate in email what partial success means to users, including that not all files are available., you can resubmit etc.
Show the number of files in error vs. the total file count (in email and on transfer detail page).
What is happening is that some of the files for a SRM request are successfully moved to disk, but some are not. The end user then runs their wget script and for the files that were not successfully moved, we get a null pointer exception.
Here is a query to show what is occurring:
SELECT * FROM workspace.data_transfer_item WHERE request_id = 'b696413e-eed6-4654-9e0e-5bfcf4060585';
Of the 511 requested files, only 69 were successfully moved to disk.
Acceptance Criteria:
Indicate request is "success" in data transfer report and email if all files are were successfully transferred.
Indicate request is "partial success" in data transfer report and email if fewer than all files were successfully transferred (and at least one was successful).
Otherwise indicate the transfer "failed".
Wget and Curl scripts should only include the successful files.
Remove all caps from emails.
Indicate in email what partial success means to users, including that not all files are available., you can resubmit etc.
Show the number of files in error vs. the total file count (in email and on transfer detail page).
What is happening is that some of the files for a SRM request are successfully moved to disk, but some are not. The end user then runs their wget script and for the files that were not successfully moved, we get a null pointer exception.
Here is a query to show what is occurring:
SELECT * FROM workspace.data_transfer_item WHERE request_id = 'b696413e-eed6-4654-9e0e-5bfcf4060585';
Of the 511 requested files, only 69 were successfully moved to disk.