Samples issue fix (#3402)

* update changelog

* text update

* sample issue fix

* readme update
This commit is contained in:
George Arama 2022-03-08 12:01:21 -08:00 committed by GitHub
parent 530189eaf8
commit 70ec55f365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ auto pollResponse = response.PollUntilDone(defaultWait).Value;
if (!pollResponse.Error && pollResponse.Status.Value() == "completed")
{
// get the certificate
auto result = certificateClient.GetCertificate(certificateName).Value;
certificate = certificateClient.GetCertificate(certificateName).Value;
std::cout << "Created certificate with policy. Certificate name : " << certificate.Name();
}
```

View File

@ -54,7 +54,7 @@ auto pollResponse = response.PollUntilDone(defaultWait).Value;
if (!pollResponse.Error && pollResponse.Status.Value() == "completed")
{
// get the certificate
auto result = certificateClient.GetCertificate(certificateName).Value;
certificate = certificateClient.GetCertificate(certificateName).Value;
std::cout << "Created certificate with policy. Certificate name : " << certificate.Name();
}
```

View File

@ -72,7 +72,7 @@ int main()
if (!pollResponse.Error && pollResponse.Status.Value() == "completed")
{
// get the certificate
auto result = certificateClient.GetCertificate(certificateName).Value;
certificate = certificateClient.GetCertificate(certificateName).Value;
std::cout << "Created certificate with policy. Certificate name : " << certificate.Name();
}
else