You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The temporary directory used by S3Client for downloading manifests and inventory lists should be deleted automatically on program exit, but this is not happening (when Ctrl-C is pressed, at least). The tempfile docs suggest that File handles or similar might not be getting dropped before the TempDir. Fix this.
The text was updated successfully, but these errors were encountered:
Further investigation indicates that the temporary directory is cleaned up appropriately on normal (non-Ctrl-C) exit, so this is only a problem when Ctrl-C is hit, which we can't do much about at the moment (but see #14).
The temporary directory used by
S3Client
for downloading manifests and inventory lists should be deleted automatically on program exit, but this is not happening (when Ctrl-C is pressed, at least). Thetempfile
docs suggest thatFile
handles or similar might not be getting dropped before theTempDir
. Fix this.The text was updated successfully, but these errors were encountered: