Skip to content

Commit aa8c1ba

Browse files
authored
CFn: add more clarity on logging for unimplemented update methods (#13109)
1 parent e3b4f46 commit aa8c1ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

localstack-core/localstack/services/cloudformation/resource_provider.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)