revert change from #1721

makes TestListener never quit
This commit is contained in:
Liamsi 2018-06-20 17:48:04 -07:00
parent 5a70fa6f35
commit 6677f81ffb
1 changed files with 1 additions and 2 deletions

View File

@ -92,11 +92,10 @@ func WALWithNBlocks(numBlocks int) (data []byte, err error) {
select {
case <-numBlocksWritten:
consensusState.Stop()
wr.Flush()
return b.Bytes(), nil
case <-time.After(1 * time.Minute):
consensusState.Stop()
wr.Flush()
return []byte{}, fmt.Errorf("waited too long for tendermint to produce %d blocks (grep logs for `wal_generator`)", numBlocks)
}
}