From 7c221c221b333188463dc585de2fa2ebf1c53929 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Thu, 24 Oct 2019 12:48:30 +0700 Subject: [PATCH 1/2] fix branch checkout when building the interop image --- interop/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interop/Dockerfile b/interop/Dockerfile index 324a6d30..8fbafd80 100644 --- a/interop/Dockerfile +++ b/interop/Dockerfile @@ -13,7 +13,7 @@ ARG CACHEBUST=1 RUN git clone https://github.com/lucas-clemente/quic-go && \ cd quic-go && \ - git checkout interop && \ + git fetch origin interop && git checkout -t origin/interop && \ go get ./... WORKDIR /quic-go From 540f89f507474bbfe7628cf800b5f87cf8a35e99 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Thu, 24 Oct 2019 14:26:40 +0700 Subject: [PATCH 2/2] enable logging for the interop runner --- interop/run_endpoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interop/run_endpoint.sh b/interop/run_endpoint.sh index f25f9c17..acc3ac5f 100644 --- a/interop/run_endpoint.sh +++ b/interop/run_endpoint.sh @@ -10,8 +10,8 @@ if [ "$ROLE" == "client" ]; then echo "Starting QUIC client..." echo "Client params: $CLIENT_PARAMS" echo "Test case: $TESTCASE" - ./client $CLIENT_PARAMS $REQUESTS + QUIC_GO_LOG_LEVEL=debug ./client $CLIENT_PARAMS $REQUESTS else echo "Running QUIC server." - ./server "$@" + QUIC_GO_LOG_LEVEL=debug ./server "$@" fi