Skip to content

Commit

Permalink
scripts/runfabtests.cmd: Use loopback address in place of localhost
Browse files Browse the repository at this point in the history
Use the loopback address 127.0.0.1 in place of 'localhost', to ensure that
the address format is ipv4 by default.  Localhost could map to an ipv6
address.

Signed-off-by: Sean Hefty <sean.hefty@intel.com>
  • Loading branch information
shefty committed Jul 16, 2018
1 parent 7bd36ec commit cfecfb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/runfabtests.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ setlocal EnableDelayedExpansion
set PATH=%~dp0;%PATH%


set S_INTERFACE=localhost
set C_INTERFACE=localhost
set S_INTERFACE=127.0.0.1
set C_INTERFACE=127.0.0.1

set TEST_FAIL_TIMEOUT=90

Expand Down

0 comments on commit cfecfb1

Please sign in to comment.