Skip to content

Commit

Permalink
Remove extra default update (#3)
Browse files Browse the repository at this point in the history
* Remove extra default update

* Fix role name
  • Loading branch information
lksnyder0 authored Jun 12, 2024
1 parent 1aac2d7 commit d7b3965
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::068738303278:role/PushPullECSToolchainImage
role-to-assume: arn:aws:iam::068738303278:role/GithubECSRepoPolicy
aws-region: us-east-1

- name: Login to Amazon ECR
Expand Down
1 change: 0 additions & 1 deletion scripts/schema/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ def merge_fields(
asd["reusable"].setdefault("expected", [])
asd["reusable"]["expected"].extend(bsd["reusable"]["expected"])
bsd.pop("reusable")
asd.setdefault("settings", {})
if "settings" in bsd:
asd.setdefault("settings", {})
asd["settings"] = merge_fields(asd["settings"], bsd["settings"])
Expand Down
1 change: 0 additions & 1 deletion scripts/tests/unit/test_schema_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,6 @@ def test_merge_array_attributes(self):
"top_level": True,
"expected": ["normal.location", "a_new.location"],
},
"settings": {},
},
"field_details": {"name": "foo", "type": "group"},
"fields": {
Expand Down

0 comments on commit d7b3965

Please sign in to comment.