Skip to content

Commit

Permalink
[Release] Fix Serve release test (ray-project#13303)
Browse files Browse the repository at this point in the history
The Docker image we were using now uses `ray` users so we have to call
sudo.
  • Loading branch information
simon-mo authored Jan 14, 2021
1 parent 321bbe1 commit 16e8c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/long_running_tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 16e8c4a

Please sign in to comment.