File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
localstack-core/localstack/services/cloudformation Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -518,10 +518,14 @@ def execute_action(
518518 try :
519519 return resource_provider .update (request )
520520 except NotImplementedError :
521+ feature_request_url = "https://github.com/localstack/localstack/issues/new?template=feature-request.yml"
521522 LOG .warning (
522- 'Unable to update resource type "%s", id "%s"' ,
523+ 'Unable to update resource type "%s", id "%s", '
524+ "the update operation is not implemented for this resource. "
525+ "Please consider submitting a feature request at this URL: %s" ,
523526 request .resource_type ,
524527 request .logical_resource_id ,
528+ feature_request_url ,
525529 )
526530 if request .previous_state is None :
527531 # this is an issue with our update detection. We should never be in this state.
You can’t perform that action at this time.
0 commit comments