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 fdeb11f commit 11bfcf9Copy full SHA for 11bfcf9
src/CommunityToolkit.Aspire.Hosting.Minio/MinioContainerResource.cs
@@ -68,8 +68,8 @@ private ReferenceExpression GetConnectionString()
68
builder.Append(
69
$"Endpoint=http://{PrimaryEndpoint.Property(EndpointProperty.Host)}:{PrimaryEndpoint.Property(EndpointProperty.Port)}");
70
71
- builder.Append($";AccessKey={RootUser.Value}");
72
- builder.Append($";SecretKey={PasswordParameter.Value}");
+ builder.Append($";AccessKey={RootUser}");
+ builder.Append($";SecretKey={PasswordParameter}");
73
74
return builder.Build();
75
}
0 commit comments