Skip to content

Commit 771b823

Browse files
scbeddazure-sdk
authored andcommitted
address pr comments
1 parent c711595 commit 771b823

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

eng/common/testproxy/test-proxy-standalone-tool.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ steps:
7878
if [[ "$(uname)" == "Darwin" ]]; then
7979
export DOTNET_ROOT="$HOME/.dotnet"
8080
fi
81-
echo "nohup $(PROXY_EXE) start -u --storage-location ${{ parameters.rootFolder }} -- --urls ${{ parameters.proxyUrl }} 1>${{ parameters.rootFolder }}/test-proxy.log 2>${{ parameters.rootFolder }}/test-proxy-error.log &"
82-
nohup $(PROXY_EXE) start -u --storage-location ${{ parameters.rootFolder }} -- --urls ${{ parameters.proxyUrl }} 1>${{ parameters.rootFolder }}/test-proxy.log 2>${{ parameters.rootFolder }}/test-proxy-error.log &
81+
echo "nohup $(PROXY_EXE) start -u --storage-location ${{ parameters.rootFolder }} -- --urls \"${{ parameters.proxyUrl }}\" 1>${{ parameters.rootFolder }}/test-proxy.log 2>${{ parameters.rootFolder }}/test-proxy-error.log &"
82+
nohup $(PROXY_EXE) start -u --storage-location ${{ parameters.rootFolder }} -- --urls "${{ parameters.proxyUrl }}" 1>${{ parameters.rootFolder }}/test-proxy.log 2>${{ parameters.rootFolder }}/test-proxy-error.log &
8383
8484
echo $! > $(Build.SourcesDirectory)/test-proxy.pid
8585

eng/common/testproxy/test-proxy-tool.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ steps:
9191
if [[ "$(uname)" == "Darwin" ]]; then
9292
export DOTNET_ROOT="$HOME/.dotnet"
9393
fi
94-
nohup $(Build.BinariesDirectory)/test-proxy/test-proxy start -u --storage-location ${{ parameters.rootFolder }} -- --urls ${{ parameters.proxyUrl }} 1>${{ parameters.rootFolder }}/test-proxy.log 2>${{ parameters.rootFolder }}/test-proxy-error.log &
94+
nohup $(Build.BinariesDirectory)/test-proxy/test-proxy start -u --storage-location ${{ parameters.rootFolder }} -- --urls "${{ parameters.proxyUrl }}" 1>${{ parameters.rootFolder }}/test-proxy.log 2>${{ parameters.rootFolder }}/test-proxy-error.log &
9595
9696
echo $! > $(Build.SourcesDirectory)/test-proxy.pid
9797

0 commit comments

Comments
 (0)