Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix system test test_aws_auth_manager (apache#44073)
Browse files Browse the repository at this point in the history
test_aws_auth_manager is failing because the schema from Amazon Verified Permissions has been moved when doing the refactoring of providers in Airflow codebase.
vincbeck authored and kandharvishnuu committed Nov 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 36fc592 commit 88a0fae
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -70,7 +70,9 @@ def create_avp_policy_store(env_id):
schema_path = (
Path(__file__)
.parents[6]
.joinpath("airflow", "providers", "amazon", "aws", "auth_manager", "avp", "schema.json")
.joinpath(
"providers", "src", "airflow", "providers", "amazon", "aws", "auth_manager", "avp", "schema.json"
)
.resolve()
)
with open(schema_path) as schema_file:

0 comments on commit 88a0fae

Please sign in to comment.