Typo error in xml mimetype deploy to S3 storage. Thais patch remove the
extra sign to correctly map mimetype to content-type.
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ia88ac75f483b31312ae72cc104021ab9efda6455
extra_args = {"ContentType": "text/plain"}
text_html_extra_args = {"ContentType": "text/html", "ContentEncoding": mimetypes.guess_type(file)[1]}
text_plain_extra_args = {"ContentType": "text/plain", "ContentEncoding": mimetypes.guess_type(file)[1]}
- app_xml_extra_args = {"ContentType": "application/xml'", "ContentEncoding": mimetypes.guess_type(file)[1]}
+ app_xml_extra_args = {"ContentType": "application/xml", "ContentEncoding": mimetypes.guess_type(file)[1]}
if file == "_tmpfile":
for dir in (logs_dir, silo_dir, jenkins_node_dir):
try:
--- /dev/null
+---
+fixes:
+ - |
+ Typo error in xml mimetype deploy to S3 storage. Thais patch remove the
+ extra sign to correctly map mimetype to content-type.