diff options
author | murgatroid99 <michael.lumish@gmail.com> | 2015-01-28 17:27:08 -0800 |
---|---|---|
committer | murgatroid99 <michael.lumish@gmail.com> | 2015-01-28 17:27:08 -0800 |
commit | 47fd137e80fe7a85764245f6d255079ef301eeea (patch) | |
tree | ad88692571b54209caa53ec2b3b4406a2e08b94f | |
parent | c3c3a8f0512bc19d49d3a24b5146d7214da5fbe7 (diff) |
Fixed alignment issues
-rwxr-xr-x | tools/gce_setup/grpc_docker.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gce_setup/grpc_docker.sh b/tools/gce_setup/grpc_docker.sh index 602d04b2a6..d301cc43e1 100755 --- a/tools/gce_setup/grpc_docker.sh +++ b/tools/gce_setup/grpc_docker.sh @@ -381,7 +381,7 @@ grpc_interop_test_args() { cxx) grpc_port=8010 ;; go) grpc_port=8020 ;; java) grpc_port=8030 ;; - node) grpc_port=8040 ;; + node) grpc_port=8040 ;; python) grpc_port=8050 ;; ruby) grpc_port=8060 ;; *) echo "bad server_type: $1" 1>&2; return 1 ;; @@ -555,7 +555,7 @@ grpc_launch_server_args() { cxx) grpc_port=8010 ;; go) grpc_port=8020 ;; java) grpc_port=8030 ;; - node) grpc_port=8040 ;; + node) grpc_port=8040 ;; python) grpc_port=8050 ;; ruby) grpc_port=8060 ;; *) echo "bad server_type: $1" 1>&2; return 1 ;; @@ -627,7 +627,7 @@ grpc_launch_server() { # cxx: 8010 # go: 8020 # java: 8030 -# node: 8040 +# node: 8040 # python: 8050 # ruby: 8060 # |