Samples issue fix (#3402)
* update changelog * text update * sample issue fix * readme update
This commit is contained in:
parent
530189eaf8
commit
70ec55f365
@ -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();
|
||||
}
|
||||
```
|
||||
|
||||
@ -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();
|
||||
}
|
||||
```
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user