Skip to content

Commit c748bb9

Browse files
authored
refer correctly to component providers (#358)
We consistently want to refer to Component Providers, which is the official name, and not MLCs. Do so here.
1 parent a493908 commit c748bb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: sdk/Pulumi/Provider/Provider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ public override Task<Empty> Delete(Pulumirpc.DeleteRequest request, ServerCallCo
922922
DependsOn = dependsOn,
923923
Protect = request.Protect,
924924
Providers = providers,
925-
Parent = !string.IsNullOrEmpty(request.Parent) ? new DependencyResource(request.Parent) : throw new RpcException(new Status(StatusCode.InvalidArgument, "Parent must be set for MLCs.")),
925+
Parent = !string.IsNullOrEmpty(request.Parent) ? new DependencyResource(request.Parent) : throw new RpcException(new Status(StatusCode.InvalidArgument, "Parent must be set for Component Providers.")),
926926
CustomTimeouts = request.CustomTimeouts != null ? CustomTimeouts.Deserialize(request.CustomTimeouts) : null,
927927
DeletedWith = string.IsNullOrEmpty(request.DeletedWith) ? null : new DependencyResource(request.DeletedWith),
928928
IgnoreChanges = request.IgnoreChanges.ToList(),

0 commit comments

Comments
 (0)