Jonathan Moody

Results 41 issues of Jonathan Moody

This poses a problem for making the transition to native aarch64 python3.9. I don't know why it doesn't try to get libtorrent sources and compile in this case. ``` uname...

area: files
area: downloads

This is happening right at the beginning of the test. Possible setup issue. Do we wait for an initial sync to finish? ``` async def test_wallet_syncing_status(self): address = await self.daemon.jsonrpc_address_unused()...

area: wallet
area: tests

I think it's a problem with `generate_and_wait()` used during test setup. It waits on a TX, but not for the target height (206). https://github.com/moodyjon/lbry-sdk/runs/8270128792?check_suite_focus=true ``` 203 ====================================================================== [204](https://github.com/moodyjon/lbry-sdk/runs/8270128792?check_suite_focus=true#step:11:205) FAIL: test_reorg...

area: tests

I'm experimenting with running the desktop app with less reliance on the fixed peers. daemon_settings.yml `fixed_peer_delay: 15.0` ``` 2022-08-24 06:25:52,279 WARNING lbry.dht.protocol.iterative_find:332: misbehaving peer 135.148.27.57:4444 returned duplicate peers for blob...

**Bug** I just noticed today my lbry-desktop app was consuming 6GB+ memory. This inhibits keeping the thing running for long periods when not watching videos. Being able to run it...

type: bug
area: performance

Fixes #3704 Edit: Added unit test for blob_dirs in test_conf.py. The idea here is that `/blobfiles` will continue to exist, but people can add more blob dirs using `--blob-dirs`. New...

Fixes https://github.com/lbryio/lbry-sdk/issues/3708

Fixes #3713 Reproduction of something similar to the original problem: ``` (lbry-venv) swdev1@Jonathans-Mac-mini lbry-sdk % python -m unittest -vv -k test_liquidate_at_loss tests/unit/wallet/test_transaction.py test_liquidate_at_loss (tests.unit.wallet.test_transaction.TransactionIOBalancing) ... FAIL test_liquidate_at_loss_tiny_utxos (tests.unit.wallet.test_transaction.TransactionIOBalancing) ... 2022-12-12...

Fixes #3699 `sleep_delay` seemed to not work as originally intended --- the `asyncio.sleep(30)` was always a fixed delay.

Context: https://github.com/lbryio/types/issues/49 This based on https://github.com/lbryio/lbry-sdk/pull/3697, but moving away from `protobuf.Any`. This allows deleting some code to detect unknown extension types and the code to unpack a message from the...