Skip to content

Commit

Permalink
fix killing dangling qpep instance
Browse files Browse the repository at this point in the history
  • Loading branch information
parvit committed May 18, 2024
1 parent a22de89 commit 6bd13ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,12 +236,13 @@ jobs:
- name: Update configuration
run: |
envsubst < ${{ github.workspace }}/docker/server-env/server/config/qpep.yml.tpl > ${{ github.workspace }}/build/config/qpep.yml
cat ${{ github.workspace }}/build/config/qpep.yml
- name: Run server
run: |
sudo pkill -e -n -s SIGINT qpep
cd build/
sudo ./qpep &> test.log &
echo $! > server.pid
- name: Run data server
run: |
Expand Down Expand Up @@ -299,7 +300,7 @@ jobs:
if: always()
run: |
cd build/
kill -s SIGINT $(cat server.pid)
sudo pkill -e -n -s SIGINT qpep
- name: Stop Data Server
if: always()
Expand Down

0 comments on commit 6bd13ba

Please sign in to comment.