-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Do not delete an already existing archive on error #2257
Do not delete an already existing archive on error #2257
Conversation
f99616e
to
d99706a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
@@ -114,6 +114,8 @@ impl CompressedArchiveSnapshotter { | |||
} | |||
|
|||
fn snapshot<T: TarAppender>(&self, filepath: &Path, appender: T) -> StdResult<OngoingSnapshot> { | |||
let temporary_archive_path = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this could be done more elegantly with Path::with_extension
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to use it but Path::with_extension
replace the extension by the new one, ("archive.tar.gz" become "archive.tar.tmp").
There is also a Path::with_added_extension
that just add the extension but it's unstable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
d99706a
to
ed41bb7
Compare
mithril-aggregator/src/services/snapshotter/compressed_archive_snapshotter.rs
Fixed
Show fixed
Hide fixed
mithril-aggregator/src/services/snapshotter/compressed_archive_snapshotter.rs
Fixed
Show fixed
Hide fixed
ed41bb7
to
aee9b36
Compare
aee9b36
to
f7d36ea
Compare
* mithril-aggregator from `0.6.23` to `0.6.24`
Content
If an archive exists, it must not be deleted if an error occurs when trying to create an archive with the same name.
We replace an existing snapshotted file only if the snapshotting is successful.
This PR include:
Pre-submit checklist
Issue(s)
Closes #2215