From 16e8c4a69fcabdec66f3c4bbb4850d8b238293e2 Mon Sep 17 00:00:00 2001 From: Simon Mo Date: Thu, 14 Jan 2021 12:23:53 -0800 Subject: [PATCH] [Release] Fix Serve release test (#13303) The Docker image we were using now uses `ray` users so we have to call sudo. --- release/long_running_tests/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/long_running_tests/run.sh b/release/long_running_tests/run.sh index e48d7c899..8a85f415c 100644 --- a/release/long_running_tests/run.sh +++ b/release/long_running_tests/run.sh @@ -52,7 +52,7 @@ wheel="https://s3-us-west-2.amazonaws.com/ray-wheels/$ray_branch/$commit/ray-$ra # Serve load testing tool cur_dir=$(pwd) -cd /tmp && rm -rf wrk && git clone https://github.com/wg/wrk.git wrk && cd wrk && make -j && cp wrk /usr/local/bin +cd /tmp && rm -rf wrk && git clone https://github.com/wg/wrk.git wrk && cd wrk && make -j && sudo cp wrk /usr/local/bin cd "$cur_dir" || exit pip install --upgrade pip