We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5263711 commit 445e056Copy full SHA for 445e056
clean_and_preload_parity_images.sh
@@ -27,7 +27,13 @@ echo "waiting 5s for chains to start up"
27
sleep 5
28
docker-compose up -d smart-contracts-init
29
INITSTATUS=`docker wait streamr-dev-smart-contracts-init`
30
+
31
docker logs streamr-dev-smart-contracts-init &> $LOG
32
33
+# remove timestamps in order to see in diffs if logs have changed
34
+sed "s/^2022-[^ ]* //g" $LOG > tmp.log
35
+cp tmp.log $LOG
36
37
echo "streamr-dev-smart-contracts-init finished with status $INITSTATUS. Logs in $LOG"
38
test $INITSTATUS -ne 0 && echo "streamr-dev-smart-contracts-init failed" && exit 1
39
docker exec streamr-dev-parity-sidechain-node0 /bin/bash -c 'mv /home/parity/parity_data /home/parity/parity_data.default'
0 commit comments