Skip to content

Commit

Permalink
dont use default 0.0.0.0 per docker test (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgallotta authored Feb 28, 2024
1 parent 6403c68 commit 6b546e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion local_tests/invoke.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
NB_INVOKE=$1

# Start the container
dockerId=$(docker run -d -e AWS_LAMBDA_FUNCTION_TIMEOUT=7 -p 9000:8080 -p 127.0.0.1:8124:8124 datadog/extension-local-tests)
dockerId=$(docker run -d -e AWS_LAMBDA_FUNCTION_TIMEOUT=7 -p 127.0.0.1:9000:8080 -p 127.0.0.1:8124:8124 datadog/extension-local-tests)

# Curl it!
i=0
Expand Down
2 changes: 1 addition & 1 deletion local_tests/serverless-init/invoke.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
N_INVOKE=$1

# Start the container
dockerId=$(docker run -d -p 9000:8080 -p 127.0.0.1:8124:8124 datadog/extension-local-tests)
dockerId=$(docker run -d -p 127.0.0.1:9000:8080 -p 127.0.0.1:8124:8124 datadog/extension-local-tests)

i=0
while true; do
Expand Down

0 comments on commit 6b546e7

Please sign in to comment.