From e99a7d7d088d499b9476c79abcc178e37f45f175 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Tue, 23 Aug 2022 14:44:06 +0000 Subject: [PATCH] debug: send SIGUSR1 to docker process --- --- a/.github/workflows/nodes-only-update.yml +++ b/.github/workflows/nodes-only-update.yml @@ -146,7 +146,7 @@ - name: Temp Wait. Will be remove after send SIGUSER to polkadot-launch - run: sleep 600s + run: sleep 30s # - name: Run tests before Node Parachain upgrade # run: | @@ -173,9 +173,10 @@ if: success() run: | #Get PID of polkadot-launch - PID=$(docker exec -it node-parachain pidof 'polkadot-launch') + PID=$(docker exec node-parachain pidof 'polkadot-launch') + echo $PID #Send SIGUSR1 signal to $PID - docker exec -it node-parachain kill -SIGUSR1 $(PID) + docker exec node-parachain kill -SIGUSR1 $PID # 🌗 All parachain collators restarted with the new binaries. - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade. -- gitstuff