From ca45554f1cf854926694fd32bdc80dfa3c9930ce Mon Sep 17 00:00:00 2001 From: Eric Gribkoff Date: Thu, 15 Feb 2018 15:24:17 -0800 Subject: fix github uri in client_matrix.py --- tools/interop_matrix/client_matrix.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/interop_matrix/client_matrix.py b/tools/interop_matrix/client_matrix.py index 5a6eaa9586..c7da979df0 100644 --- a/tools/interop_matrix/client_matrix.py +++ b/tools/interop_matrix/client_matrix.py @@ -18,9 +18,9 @@ def get_github_repo(lang): return { - 'go': 'https://github.com:grpc/grpc-go.git', - 'java': 'https://github.com:grpc/grpc-java.git', - 'node': 'https://github.com:grpc/grpc-node.git', + 'go': 'https://github.com/grpc/grpc-go.git', + 'java': 'https://github.com/grpc/grpc-java.git', + 'node': 'https://github.com/grpc/grpc-node.git', # all other languages use the grpc.git repo. }.get(lang, 'https://github.com/grpc/grpc.git') -- cgit v1.2.3