Skip to content

Commit

Permalink
merge bug fix (#46951)
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofCwalina authored Nov 1, 2024
1 parent d4438be commit e4f06cb
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ namespace Azure.CloudMachine;
public partial class CloudMachineClient : CloudMachineWorkspace
{
protected CloudMachineClient()
{ }
{
Messaging = new MessagingServices(this);
Storage = new StorageServices(this);
}
#pragma warning disable AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect to the service.
public CloudMachineClient(TokenCredential credential = default, IConfiguration configuration = default)
#pragma warning restore AZC0007 // DO provide a minimal constructor that takes only the parameters required to connect to the service.
Expand Down

0 comments on commit e4f06cb

Please sign in to comment.