Author | SHA1 | Message | Date |
---|---|---|---|
Zach | 2cc63069c6 |
rename dummy to kvstore (#1223)
* remove accidental binary * docs: s/Dummy&dummy/KVStore&kvstore/g * glide update to abci * update abci import paths * dummy begone, hello kvstore * RequestInitChain needs genesisBytes * glide update |
7 years ago |
Anton Kaliaev | 0ae0155cba | restore mempool memory leak tests | 7 years ago |
Anton Kaliaev |
84a0a1987c
|
comment out tests for now
https://github.com/tendermint/tendermint/pull/1173#issuecomment-363173047 |
7 years ago |
Anton Kaliaev |
202d9a2c0c
|
fix memory leak in mempool reactor
Leaking goroutine: ``` 114 @ 0x42f2bc 0x42f3ae 0x440794 0x4403b9 0x468002 0x9fe32d 0x9ff78f 0xa025ed 0x45e571 ``` Explanation: it blocks on an empty clist forever. so unless theres txs coming in, this go routine will just sit there, holding onto the peer too. if we're constantly reconnecting to some peer, old instances are not garbage collected, leading to memory leak. Fixes https://github.com/cosmos/gaia/issues/108 Previous attempt https://github.com/tendermint/tendermint/pull/1156 |
7 years ago |
Ethan Buchman | e69d36d54f | some more robust sleeps | 7 years ago |
Ethan Buchman | 88138c38cf | mempool: reactor test | 7 years ago |