We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d241003 commit f7d05e1Copy full SHA for f7d05e1
localstack-core/localstack/services/cloudformation/engine/v2/change_set_model_executor.py
@@ -386,9 +386,12 @@ def _execute_resource_action(
386
message=f"Resource provider operation failed: {reason}",
387
)
388
elif config.CFN_IGNORE_UNSUPPORTED_RESOURCE_TYPES:
389
- LOG.warning(
390
- "Resource of type %s is not supported but CFN_IGNORE_UNSUPPORTED_RESOURCE_TYPES is set to ignore it",
+ log_not_available_message(
391
resource_type,
+ f'No resource provider found for "{resource_type}"',
392
+ )
393
+ LOG.warning(
394
+ "Deployment of resource type %s successful due to config CFN_IGNORE_UNSUPPORTED_RESOURCE_TYPES"
395
396
event = ProgressEvent(
397
OperationStatus.SUCCESS,
0 commit comments