fix: Add delete
permission to thesecure_open
#92
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What was the problem/requirement? (What/Why)
The Delete permission is missing in the
secure_open
in the Windows. It will cause that the connection file is not able to be deleted .What was the solution? (How)
Add the permission to the
secure_open
to allow the cleanup to clean up the files.What is the impact of this change?
connection file should be deleted successfully.
How was this change tested?
Due to an unexpected behavior within the system, I encountered limitations in directly testing this change. Specifically, files located under
C:\Users\user_name
can be deleted without requiring delete permissions. Therefore, One of our test can delete the file without the delete permissions. Want to mention that permission inheritance has been explicitly disabled for these files, yet deletion is still possible. I need to investigate this issue outside of this PR.I manually check the
delete
permission of the file create by thesecure_open
to confirm that the file owner have the permission to read, write and delete the file. So the permissions are updated.Was this change documented?
N/A
Is this a breaking change?
N/A
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.