Delete from storage? #2729
Answered
by
jnlycklama
Ivan (DevOriginalWang)
asked this question in
Q&A
|
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? |
Answered by
jnlycklama
Jun 5, 2023
Replies: 2 comments
|
I check in the blob storage and it looks like all the dicom files are still there. |
0 replies
|
Hi, |
0 replies
Answer selected by
KnicKnic
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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