# HG changeset patch # User Goffi # Date 1583515143 -3600 # Node ID 2e892f9f54f6aa47a1335a379c9c11de6b81995a # Parent 439e2f88c3a96a8036943f30f8737f72a3b1132c plugin attachment: remove "path" from attachment once used: "path" refers to a local path of a file, we don't want to store it in database as the file may be in a temporary location, or even be a temporary file. So once the file has been uploaded, we remove it. diff -r 439e2f88c3a9 -r 2e892f9f54f6 sat/plugins/plugin_misc_attach.py --- a/sat/plugins/plugin_misc_attach.py Sun Mar 01 18:48:06 2020 +0100 +++ b/sat/plugins/plugin_misc_attach.py Fri Mar 06 18:19:03 2020 +0100 @@ -59,15 +59,19 @@ for attachment in attachments: try: - path = Path(attachment["path"]) + # we pop path because we don't want it to be stored, as the image can be + # only in a temporary location + path = Path(attachment.pop("path")) except KeyError: log.warning("no path in attachment: {attachment}") to_delete.append(attachment) continue if "url" in attachment: - log.warning("invalid attachment: unknown URL") - to_delete.append(attachment) + url = attachment.pop('url') + log.warning( + f"unexpected URL in attachment: {url!r}\nattachment: {attachment}" + ) try: name = attachment["name"]