Skip to content

Commit

Permalink
DRIVERS-1541 Add kms_failpoint_server.py to start-servers.sh for KMS …
Browse files Browse the repository at this point in the history
…retry testing (#554)
  • Loading branch information
ShaneHarvey authored Dec 3, 2024
1 parent e5b7e18 commit c7b7f52
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .evergreen/csfle/await-servers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ await_server() {
await_server "HTTP" 9000
await_server "HTTP" 9001
await_server "HTTP" 9002
await_server "KMS Failpoint" 9003
await_server "Azure" 8080
await_server "KMIP" 5698

Expand Down
6 changes: 6 additions & 0 deletions .evergreen/csfle/start-servers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ cat http3.log
echo "Starting HTTP Server 3...done."


echo "Starting Failpoint Server..."
python -u kms_failpoint_server.py --port 9003 > failpoint.log 2>&1 &
echo "$!" >> kmip_pids.pid
echo "Starting Failpoint Server...done."
sleep 1

echo "Starting Fake Azure IMDS..."
python bottle.py fake_azure:imds > fake_azure.log 2>&1 &
echo "$!" >> kmip_pids.pid
Expand Down

0 comments on commit c7b7f52

Please sign in to comment.