Skip to content

Commit 8ad4fc3

Browse files
Merge pull request #314922 from Abhinav-Premsekhar/main
Fix typo in load test configuration documentation
2 parents 631ed6d + 235f906 commit 8ad4fc3

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

articles/app-testing/load-testing/how-to-configure-load-test-cicd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Update your Azure Pipelines workflow to run a load test for your Azure load test
296296
```
297297
298298
Optionally, you can pass parameters or secrets to the load test by using the `env` or `secrets` property.
299-
Set *`waitForCompletion: false`* to if you want to proceed without waiting for the load test run to complete.
299+
Set *`waitForCompletion: false`* if you want to proceed without waiting for the load test run to complete.
300300
301301
1. Use the `publish` task to publish the test results as artifacts in your Azure Pipelines workflow run.
302302
@@ -350,7 +350,7 @@ Update your GitHub Actions workflow to run a load test for your Azure load testi
350350
```
351351
352352
Optionally, you can pass parameters or secrets to the load test by using the `env` or `secrets` property.
353-
Set *`waitForCompletion: false`* to if you want to proceed without waiting for the load test run to complete.
353+
Set *`waitForCompletion: false`* if you want to proceed without waiting for the load test run to complete.
354354
355355
1. Use the `actions/upload-artifact` action to publish the test results as artifacts in your GitHub Actions workflow run.
356356

articles/app-testing/load-testing/how-to-test-secured-endpoints.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,11 +246,8 @@ When you run your load test, Azure Load Testing retrieves the client certificate
246246
For Locust-based tests, you can retrieve the certificate and use it in your tests script. The certificate configured in the load test configuration are available in the `ALT_CERTIFICATES_DIR`.
247247

248248
```Python
249-
endpoint = os.getenv("endpoint") or "localhost"
250249
cert_dir = os.getenv("ALT_CERTIFICATES_DIR")
251250
252-
base_url = "https://" + endpoint
253-
254251
key_path = "client.key.pem"
255252
crt_path = "client.crt.pem"
256253

0 commit comments

Comments
 (0)