Skip to content

Commit

Permalink
Update C9.yaml to address bug in error handling for C9 Instance Finder (
Browse files Browse the repository at this point in the history
  • Loading branch information
switch180 authored Jun 27, 2024
1 parent a87fff2 commit 0e43f7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions design-patterns/cloudformation/C9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ Resources:
print(err)
status = cfnresponse.FAILED
print(traceback.format_exc())
responseData = {'Error': traceback.format_exc(err)}
responseData = {'Error': traceback.format_exc()}
finally:
cfnresponse.send(event, context, status, responseData, 'CustomResourcePhysicalID')
Expand Down Expand Up @@ -736,4 +736,4 @@ Outputs:
Description: Role Arn
Value: !GetAtt Cloud9Role.Arn
Export:
Name: Cloud9RoleArn
Name: Cloud9RoleArn

0 comments on commit 0e43f7e

Please sign in to comment.