diff options
author | Michael Lumish <mlumish@google.com> | 2017-06-19 12:47:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-19 12:47:29 -0700 |
commit | 8399f92fd644c263df041d3809380944276f4274 (patch) | |
tree | 90128f868e6ae74dfc40f8b6f5e50e7adb54fbea /test | |
parent | 070a8eeb281a2659501a60b1bbc86798fcb652c4 (diff) | |
parent | d5b0455110b834c7fa102a0338882a4f98d31ae8 (diff) |
Merge pull request #11516 from murgatroid99/upmerge_1.4.x
Upmerge 1.4.x into Master
Diffstat (limited to 'test')
-rwxr-xr-x | test/distrib/node/run_distrib_test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/distrib/node/run_distrib_test.sh b/test/distrib/node/run_distrib_test.sh index bfd4ce9b93..a806f84f7c 100755 --- a/test/distrib/node/run_distrib_test.sh +++ b/test/distrib/node/run_distrib_test.sh @@ -34,8 +34,8 @@ npm install -g node-static STATIC_SERVER=127.0.0.1 # If port_server is running, get port from that. Otherwise, assume we're in -# docker and use 8080 -STATIC_PORT=$(curl 'localhost:32767/get' || echo '8080') +# docker and use 12345 +STATIC_PORT=$(curl 'localhost:32767/get' || echo '12345') # Serves the input_artifacts directory statically at localhost: static "$EXTERNAL_GIT_ROOT/input_artifacts" -a $STATIC_SERVER -p $STATIC_PORT & |