Files

9 lines
366 B
Bash
Raw Permalink Normal View History

#!/bin/bash
# Filter out expected/transient errors during CI sync test
2025-12-25 20:03:29 +00:00
grep 'ERROR ' p2pool.log | grep -E -v 'submit_block|failed to bind|ZMQ is not running|ZMQReader disconnected|block header for seed|no connections to other p2pool nodes|m_transactionHashes is empty|calc_miner_tx_hash fast path' > errors.log
if [ -s errors.log ]; then
2025-10-11 16:31:21 +02:00
cat errors.log
exit 1
fi