From 763b98d227c09b9ad4b9524d286dc0ea2f0b2237 Mon Sep 17 00:00:00 2001 From: Laren-AWS Date: Wed, 11 Oct 2023 16:25:06 -0700 Subject: [PATCH] Get server script from main. --- workflows/resilient_service/resources/server_startup_script.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/workflows/resilient_service/resources/server_startup_script.sh b/workflows/resilient_service/resources/server_startup_script.sh index fef2813dc39..17d5472b5b1 100644 --- a/workflows/resilient_service/resources/server_startup_script.sh +++ b/workflows/resilient_service/resources/server_startup_script.sh @@ -3,6 +3,5 @@ yum -y update sleep 30 # prevent "Error: Rpmdb changed underneath us" yum install python-pip -y python3 -m pip install boto3 ec2-metadata -wget -O server.py https://raw.githubusercontent.com/Laren-AWS/aws-doc-sdk-examples/fix-resilient-service-region/workflows/resilient_service/resources/server.py -# wget -O server.py https://raw.githubusercontent.com/awsdocs/aws-doc-sdk-examples/main/workflows/resilient_service/resources/server.py +wget -O server.py https://raw.githubusercontent.com/awsdocs/aws-doc-sdk-examples/main/workflows/resilient_service/resources/server.py python3 server.py 80