-
Notifications
You must be signed in to change notification settings - Fork 15.4k
Fix: simplify parsing of Apprise config in AppriseHook #53441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contributors' Guide (https://github.com/apache/airflow/blob/main/contributing-docs/README.rst)
|
Hi 👋 This PR fixes a TypeError in AppriseHook.get_config_from_conn() caused when the Apprise connection's config is already a dictionary (e.g. from env vars like AIRFLOW_CONN_APPRISE_DEFAULT). It now supports both string and dict types. Let me know if anything else is needed! Thanks for reviewing |
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you remove the license headers?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for pointing that out. The license header was removed
unintentionally during a merge conflict. I’ve now restored it in the test
file. Please let me know if anything else is needed.
031c09a
to
e3f1f54
Compare
Thank you for pointing that out. The license header was removed
unintentionally during a merge conflict. I’ve now restored it in the test
file. Please let me know if anything else is needed.
Regards
Rohith
…On Thu, Jul 17, 2025, 3:19 PM Dominik ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In providers/apprise/tests/unit/apprise/hooks/test_apprise.py
<#53441 (comment)>:
> -# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
Why did you remove the license headers?
—
Reply to this email directly, view it on GitHub
<#53441 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BUYB46G3ROJTRBPKWDR3DC33I5WTDAVCNFSM6AAAAACBWVHMPWVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTAMRYG44DQOJXG4>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Simplify Parsing of apprise_default Connection ID in AppriseHook
This PR improves the robustness of AppriseHook.get_config_from_conn() to correctly handle cases where the config field is either:
Problem
Currently, if the connection extra field already contains a dictionary (not a string), Airflow raises:
TypeError: the JSON object must be str, bytes or bytearray, not dict
This happens because the method always calls json.loads() on the config field without checking its type. This fails when config is already a dictionary (e.g., injected via env vars in Docker).
✅ What This PR Changes
🧪 How It Was Tested
🔍 Context
📌 Why This Matters
This change allows developers to use intuitive and clean environment variable formats when configuring Apprise connections. It removes the need to escape quotes manually in JSON strings and makes the hook more robust to varying input formats.
🧼 Clean-up
Also removed some duplicate imports and cleaned up unused variables in tests to align with Airflow's style guide.
^ Add meaningful description above
Read the Pull Request Guidelines for more information.
In case of fundamental code changes, an Airflow Improvement Proposal (AIP) is needed.
In case of a new dependency, check compliance with the ASF 3rd Party License Policy.
In case of backwards incompatible changes please leave a note in a newsfragment file, named
{pr_number}.significant.rst
or{issue_number}.significant.rst
, in airflow-core/newsfragments.