From 5fcf80e38d9483029949c5f7dfb6126e535b30cf Mon Sep 17 00:00:00 2001 From: Chan Zaw Date: Tue, 21 Nov 2023 14:13:03 +0000 Subject: [PATCH] Update _index.en.md Line 138 has double curl in the code section here. --- .../076_api_faults/020_api_errors/_index.en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workshop/content/030_basic_content/076_api_faults/020_api_errors/_index.en.md b/workshop/content/030_basic_content/076_api_faults/020_api_errors/_index.en.md index ebdb77b2..51254de6 100644 --- a/workshop/content/030_basic_content/076_api_faults/020_api_errors/_index.en.md +++ b/workshop/content/030_basic_content/076_api_faults/020_api_errors/_index.en.md @@ -135,7 +135,7 @@ In [**FIS**](https://console.aws.amazon.com/fis/home) ensure the experiment is s When the experiment begins running issue a new curl request to the `/terminate` path, but this time with a `POST` action. HTTP `POST` methods are usually used for mutating actions. ```bash -curl -X POST curl ${TERMINATION_URL} +curl -X POST ${TERMINATION_URL} ``` Even with the experiment running you should receive a response that looks similar to @@ -156,4 +156,4 @@ When the experiment completes after running 3 minutes, you can verify that the i ## Conclusion -In this module, we used an SQS queue message to ensure that the TerminateInstances API call would be retried after the fault injection to demonstrate how you can use asynchronous API patterns to mitigate API failures. \ No newline at end of file +In this module, we used an SQS queue message to ensure that the TerminateInstances API call would be retried after the fault injection to demonstrate how you can use asynchronous API patterns to mitigate API failures.