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
When using aws s3 sync on *.properties files, the metadata content-type ends up with a value suitable for binary. It would be nice to have text/x-java-properties or another text/* type.
Workaround: use --content-type text/x-java-properties. However the sync origin may have more than one file type.
The text was updated successfully, but these errors were encountered:
We use the python mimetypes library to guess the type, if it can't guess then there's not much we can do. You might be able to make that request on python itself, but it will necessarily require updating python versions.
…hs (aws#2163)
* fix: md5 of directories are inconsistent without sorting the file paths
* fix: md5 of directories are inconsistent without sorting the file paths (add unit tests)
Co-authored-by: Cosh_ <[email protected]>
Co-authored-by: anvar <[email protected]>
When using
aws s3 sync
on*.properties
files, the metadata content-type ends up with a value suitable for binary. It would be nice to havetext/x-java-properties
or anothertext/*
type.Workaround: use
--content-type text/x-java-properties
. However the sync origin may have more than one file type.The text was updated successfully, but these errors were encountered: