giannistbs commented on PR #51105:
URL: https://github.com/apache/airflow/pull/51105#issuecomment-2939929811
Hi Simon,
Thanks again for flagging the limitation.
I took the discussion to the contributors’ Slack and the consensus was:
- Default to /tmp/apprise_cache – works out-of-the-box on MWAA, GCP
Composer, and generic K8s pods.
- Make it configurable – users can override the location with an
APPRISE_STORAGE_PATH environment variable if they need a different writable
volume.
I’ve updated the PR accordingly:
- AppriseHook now resolves the cache path with
os.getenv("APPRISE_STORAGE_PATH", "/tmp/apprise_cache").
- It creates the directory at runtime (os.makedirs(..., exist_ok=True)).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]