infohash opened a new pull request, #37202:
URL: https://github.com/apache/airflow/pull/37202

   Closes #37170 
   
   ## Previously
   
   ```python
   $ export AIRFLOW_CONN_APPRISE_DEFAULT='{"extra": {"config": "{\"path\": 
\"https://hooks.slack.com/services/T1JJ3T3L2/A1BRTD4JD/TIiajkdnlazkcOXrIdevi7F\";,
 \"tags\": \"alert\"}"}}'
   
   >>> from airflow.providers.apprise.hooks.apprise import AppriseHook
   >>> hook = AppriseHook()
   >>> hook.get_config_from_conn()
   
   {"path": 
"https://hooks.slack.com/services/T1JJ3T3L2/A1BRTD4JD/TIiajkdnlazkcOXrIdevi7F";, 
"tags": "alert"}
   ```
   
   ## Now
   No need to escape quotes in the environment variable.
   
   ```python
   $ export AIRFLOW_CONN_APPRISE_DEFAULT='{"extra": {"config": {"path": 
"https://hooks.slack.com/services/T1JJ3T3L2/A1BRTD4JD/TIiajkdnlazkcOXrIdevi7F";, 
"tags": "alert"}}}'
   
   
   >>> from airflow.providers.apprise.hooks.apprise import AppriseHook
   >>> hook = AppriseHook()
   >>> hook.get_config_from_conn()
   
   {"path": 
"https://hooks.slack.com/services/T1JJ3T3L2/A1BRTD4JD/TIiajkdnlazkcOXrIdevi7F";, 
"tags": "alert"}
   ```
   


-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to