mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
[modules] Fix bad usages of traceback.format_exc()
; doesn't take an error parameter (#21678)
This commit is contained in:
parent
d9e4248c35
commit
26b10eb160
11 changed files with 50 additions and 50 deletions
|
@ -506,7 +506,7 @@ def create_autoscaling_group(connection, module):
|
|||
changed = True
|
||||
return(changed, asg_properties)
|
||||
except BotoServerError as e:
|
||||
module.fail_json(msg="Failed to create Autoscaling Group: %s" % str(e), exception=traceback.format_exc(e))
|
||||
module.fail_json(msg="Failed to create Autoscaling Group: %s" % str(e), exception=traceback.format_exc())
|
||||
else:
|
||||
as_group = as_groups[0]
|
||||
changed = False
|
||||
|
@ -566,13 +566,13 @@ def create_autoscaling_group(connection, module):
|
|||
try:
|
||||
as_group.update()
|
||||
except BotoServerError as e:
|
||||
module.fail_json(msg="Failed to update Autoscaling Group: %s" % str(e), exception=traceback.format_exc(e))
|
||||
module.fail_json(msg="Failed to update Autoscaling Group: %s" % str(e), exception=traceback.format_exc())
|
||||
|
||||
if notification_topic:
|
||||
try:
|
||||
as_group.put_notification_configuration(notification_topic, notification_types)
|
||||
except BotoServerError as e:
|
||||
module.fail_json(msg="Failed to update Autoscaling Group notifications: %s" % str(e), exception=traceback.format_exc(e))
|
||||
module.fail_json(msg="Failed to update Autoscaling Group notifications: %s" % str(e), exception=traceback.format_exc())
|
||||
|
||||
if wait_for_instances:
|
||||
wait_for_new_inst(module, connection, group_name, wait_timeout, desired_capacity, 'viable_instances')
|
||||
|
@ -581,7 +581,7 @@ def create_autoscaling_group(connection, module):
|
|||
as_group = connection.get_all_groups(names=[group_name])[0]
|
||||
asg_properties = get_properties(as_group)
|
||||
except BotoServerError as e:
|
||||
module.fail_json(msg="Failed to read existing Autoscaling Groups: %s" % str(e), exception=traceback.format_exc(e))
|
||||
module.fail_json(msg="Failed to read existing Autoscaling Groups: %s" % str(e), exception=traceback.format_exc())
|
||||
return(changed, asg_properties)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue