diff options
author | Alexander Polcyn <apolcyn@google.com> | 2016-10-12 14:33:13 -0700 |
---|---|---|
committer | Alexander Polcyn <apolcyn@google.com> | 2016-10-12 14:33:13 -0700 |
commit | 46b9be73b927e43afa534a2e7e43738aa8a09f0b (patch) | |
tree | d746b3877438657f60a689d2856351e8a23678a0 | |
parent | c4fb2e782d841df4e402c5c8825f01853c8d1b1b (diff) |
add comment about go differences in go versions
-rwxr-xr-x | tools/gce/linux_performance_worker_init.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/gce/linux_performance_worker_init.sh b/tools/gce/linux_performance_worker_init.sh index 6fc3035c10..487672549f 100755 --- a/tools/gce/linux_performance_worker_init.sh +++ b/tools/gce/linux_performance_worker_init.sh @@ -129,6 +129,8 @@ gem install bundler # Go dependencies # Currently, the golang package available via apt-get doesn't have the latest go. +# Significant performance improvements with grpc-go have been observed after +# upgrading from go 1.5 to a later version, so a later go version is preferred. # Following go install instructions from https://golang.org/doc/install GO_VERSION=1.7.1 OS=linux |