Delete from storage? #2729
-
When I send a Delete request, it supposedly deletes the study from the study list, but I'm not sure if it actually deletes off the blob storage container in the back. Can anyone confirm this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I check in the blob storage and it looks like all the dicom files are still there. |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
Hi,
The DELETE request will delete the DICOM file from blob storage asynchronously, after the DELETE request has been completed. There is a configured DeleteDelay which specifies how long we will wait before attempting to delete the DICOM file -
dicom-server/src/Microsoft.Health.Dicom.Web/appsettings.json
Line 83 in 64b4322