Skip to content

Commit

Permalink
Merge pull request #178 from pact-foundation/revert-170-feat/issue-163
Browse files Browse the repository at this point in the history
Revert "feat: bind to IPv6 'any' as well as IPv4 'any'"
  • Loading branch information
YOU54F authored Mar 5, 2024
2 parents bf7fd9f + 89b5fa3 commit 6ef83d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions pact_broker/config/puma.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
require_relative "../docker_configuration"

bind "tcp://0.0.0.0:#{PactBroker.docker_configuration.port}"
bind "tcp://[::]:#{PactBroker.docker_configuration.port}"
port PactBroker.docker_configuration.port

if PactBroker.docker_configuration.puma_persistent_timeout
persistent_timeout PactBroker.docker_configuration.puma_persistent_timeout
Expand Down
2 changes: 1 addition & 1 deletion script/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
docker_compose_files=$(find . -name "docker-compose-test*.yml")

for file in $docker_compose_files; do
cat $file | sed -e "s~image: pactfoundation/pact-broker:.*~image: pactfoundation/pact-broker:${TAG}~g" > dc-tmp
cat $file | sed -e "s/pactfoundation\/pact-broker:latest.*/pactfoundation\/pact-broker:${TAG}\"/g" > dc-tmp
mv dc-tmp $file
done

Expand Down

0 comments on commit 6ef83d7

Please sign in to comment.