aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main
diff options
context:
space:
mode:
authorGravatar Shreya Bhattarai <shreyax@google.com>2016-08-11 16:57:41 +0000
committerGravatar Yue Gan <yueg@google.com>2016-08-12 08:51:48 +0000
commit7c80d88eb8e329a99da4cb433343725482bd7c15 (patch)
tree663efe42eeee920ceb6fabe4f67313c4e4ee9092 /src/main
parent2ce071cef975ad504808e199333155b16e987d66 (diff)
Prefer IP agnostic terms/operations in favor of those that work only with ipv4.
-- MOS_MIGRATED_REVID=129997924
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/google/devtools/build/lib/remote/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/remote/README.md b/src/main/java/com/google/devtools/build/lib/remote/README.md
index 1c570e8406..f778edee2a 100644
--- a/src/main/java/com/google/devtools/build/lib/remote/README.md
+++ b/src/main/java/com/google/devtools/build/lib/remote/README.md
@@ -9,7 +9,7 @@ this step.
- Then you run Bazel pointing to the Hazelcast server.
- bazel build --hazelcast_node=127.0.0.1:5701 --spawn_strategy=remote \
+ bazel build --hazelcast_node=localhost:5701 --spawn_strategy=remote \
src/tools/generate_workspace:all
Above command will build generate_workspace with remote spawn strategy that uses
@@ -25,6 +25,6 @@ with default configuration.
- Then run Bazel pointing to the Hazelcast server and remote worker.
- bazel build --hazelcast_node=127.0.0.1:5701 \
- --remote_worker=127.0.0.1:8080 \
+ bazel build --hazelcast_node=localhost:5701 \
+ --remote_worker=localhost:8080 \
--spawn_strategy=remote src/tools/generate_workspace:all