Skip to content

Commit

Permalink
Fix a bug in ArmClient (#20897)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yalin Li authored May 6, 2021
1 parent a31bb43 commit e470fcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private ArmClient(
throw new ArgumentNullException(nameof(credential));

Credential = credential;
BaseUri = baseUri;
BaseUri = baseUri ?? new Uri(DefaultUri);
ClientOptions = options?.Clone() ?? new ArmClientOptions();
Pipeline = ManagementPipelineBuilder.Build(Credential, BaseUri, ClientOptions);

Expand Down

0 comments on commit e470fcc

Please sign in to comment.