Skip to content

Commit

Permalink
ec2_vpc_vgw - fix call to parent static method in class VGWRetry (ans…
Browse files Browse the repository at this point in the history
…ible-collections#2140)

SUMMARY

When trying to create a VPN virtual gateway with a non-existent VPC id, module fails incorrectly with the following error
\\"/tmp/ansible_community.aws.ec2_vpc_vgw_payload_t4kolii1/ansible_community.aws.ec2_vpc_vgw_payload.zip/ansible_collections/community/aws/plugins/modules/ec2_vpc_vgw.py\\", line 173, in found\\nTypeError: super(type, obj): obj must be an instance or subtype of type

The fix consists in adding argument to super()

ISSUE TYPE

Bugfix Pull Request

COMPONENT NAME

ec2_vpc_vgw

Reviewed-by: Mark Chappell

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections/community.aws@87e2152
  • Loading branch information
abikouo authored and alinabuzachis committed Oct 23, 2024
1 parent bc0fbbc commit fa2701a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/ec2_vpc_vgw.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def found(response_code, catch_extra_error_codes=None):
response_code = (response_code,)

for code in response_code:
if super().found(response_code, catch_extra_error_codes):
if super(VGWRetry, VGWRetry).found(response_code, catch_extra_error_codes):
return True

return False
Expand Down

0 comments on commit fa2701a

Please sign in to comment.