-
Notifications
You must be signed in to change notification settings - Fork 398
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
Make deprecated keys_attr param ignored in aws_kms_info #838
Make deprecated keys_attr param ignored in aws_kms_info #838
Conversation
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.
LGTM!
@@ -470,10 +470,9 @@ def main(): | |||
# We originally returned "keys" | |||
if module.params['keys_attr']: |
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.
if module.params.get('keys_attr', None) is not None:
@@ -470,10 +470,9 @@ def main(): | |||
# We originally returned "keys" | |||
if module.params['keys_attr']: | |||
module.deprecate("Returning results in the 'keys' attribute conflicts with the builtin keys() method on " | |||
"dicts and as such is deprecated. Please use the kms_keys attribute. This warning can be " | |||
"dicts and as such is deprecated and is now ignored. Please use the kms_keys attribute. This warning can be " |
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.
"dicts and as such is deprecated.",
@@ -470,10 +470,9 @@ def main(): | |||
# We originally returned "keys" | |||
if module.params['keys_attr']: | |||
module.deprecate("Returning results in the 'keys' attribute conflicts with the builtin keys() method on " | |||
"dicts and as such is deprecated. Please use the kms_keys attribute. This warning can be " | |||
"dicts and as such is deprecated and is now ignored. Please use the kms_keys attribute. This warning can be " | |||
"silenced by setting keys_attr to False.", |
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.
Remove this line
aws_kms_info: Correct deprecation of keys_attr SUMMARY fixup derecation of keys_attr. ISSUE TYPE Feature Pull Request COMPONENT NAME aws_kms_info ADDITIONAL INFORMATION #838 Reviewed-by: Markus Bergholz <[email protected]> Reviewed-by: Jill R <None> Reviewed-by: None <None>
aws_kms_info - remove deprecated keys_attr parameter SUMMARY remove deprecated keys_attr parameter ISSUE TYPE Feature Pull Request COMPONENT NAME aws_kms_info ADDITIONAL INFORMATION See also: #838 Reviewed-by: Alina Buzachis <None>
SUMMARY
Make deprecated
keys_attr
param ignored inaws_kms_info
as planned for3.0.0
ISSUE TYPE
COMPONENT NAME
aws_kms_info
ADDITIONAL INFORMATION