git.delta.rocks / unique-network / refs/commits / e99a7d7d088d

difftreelog

debug: send SIGUSR1 to docker process

Alexander Aksenov2022-08-23parent: #70d5814.patch.diff
in: master

1 file changed

modified.github/workflows/nodes-only-update.ymldiffbeforeafterboth
146146
147147
148 - name: Temp Wait. Will be remove after send SIGUSER to polkadot-launch148 - name: Temp Wait. Will be remove after send SIGUSER to polkadot-launch
149 run: sleep 600s149 run: sleep 30s
150150
151# - name: Run tests before Node Parachain upgrade151# - name: Run tests before Node Parachain upgrade
152# run: |152# run: |
171171
172 - name: Send SIGUSR1 to polkadotlaunch process172 - name: Send SIGUSR1 to polkadotlaunch process
173 if: success()173 if: success()
174 run: |174 run: |
175 #Get PID of polkadot-launch175 #Get PID of polkadot-launch
176 PID=$(docker exec -it node-parachain pidof 'polkadot-launch')176 PID=$(docker exec node-parachain pidof 'polkadot-launch')
177 #Send SIGUSR1 signal to $PID177 echo $PID
178 #Send SIGUSR1 signal to $PID
178 docker exec -it node-parachain kill -SIGUSR1 $(PID)179 docker exec node-parachain kill -SIGUSR1 $PID
179180
180 # 🌗 All parachain collators restarted with the new binaries.181 # 🌗 All parachain collators restarted with the new binaries.
181 - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade.182 - name: Check if docker logs consist messages related to testing of Node Parachain Upgrade.