Skip to content

Commit

Permalink
Change test scripts according to hints in #507 (replace localhost by …
Browse files Browse the repository at this point in the history
…127.0.0.1)

Signed-off-by: Wolfgang Hottgenroth <[email protected]>
  • Loading branch information
wollud1969 authored and ralight committed Aug 8, 2018
1 parent 39170d1 commit 9912418
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/broker/06-bridge-b2br-remapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def write_config(filename, port1, port2):
f.write("port %d\n" % (port2))
f.write("\n")
f.write("connection bridge_sample\n")
f.write("address localhost:%d\n" % (port1))
f.write("address 127.0.0.1:%d\n" % (port1))
f.write("bridge_attempt_unsubscribe false\n")
f.write("topic # in 0 local/topic/ remote/topic/\n")
f.write("topic prefix/# in 0 local2/topic/ remote2/topic/\n")
Expand Down
2 changes: 1 addition & 1 deletion test/broker/08-ssl-bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def write_config(filename, port1, port2):
f.write("port %d\n" % (port2))
f.write("\n")
f.write("connection bridge_test\n")
f.write("address localhost:%d\n" % (port1))
f.write("address 127.0.0.1:%d\n" % (port1))
f.write("topic bridge/# both 0\n")
f.write("notifications false\n")
f.write("restart_timeout 2\n")
Expand Down

0 comments on commit 9912418

Please sign in to comment.