phiresky

Results 402 comments of phiresky

I deleted my copy of the repo for now. Yes I'm also not sure how to fix the Rotation, but I'm sure it's possible. > The current repo still seems...

I know that lemmy.world definitely had a misconfiguration for a bit where they had multiple instances of Lemmy running without the appropriate -federation-worker flags set (since those where not required...

It would be good to get a reproduction with an instance that someone actually controls because otherwise it's hard to say whether there is a misconfiguration or not and to...

> it seems unlikely to be related to the software on the receiving side. It might be relevant since in general every actor has their own inbox, and the merging...

That error is actually an example why that loop you removed is necessary, because the init_and_loop function exits the loop and returns an error when it errors unexpectedly. So when...

I think I know what the issue is! When there is some internal error (e.g. database pool full) during a query, that query throws. If this throw happens within an...

So after updating to main branch and a few smaller changes, the federation tests now actually pass (seemingly reliably), with the default configuration of concurrent_sends_per_instance=1. I've marked this PR as...

I've added nutomics new tests from #4751 and fixed them (mainly by making a new random activity id on each test and ensuring the activity listening server is shut down...

Yes, I will try creating a test case that creates smth like 100 posts and verifies federation, with a variant for sequential and one for parallel. for parallel the order...

I've added two tests to send batches of 10-100 events and see if they get received correctly. They can be run in parallel mode with env `LEMMY_TEST_FEDERATION_CONCURRENT_SENDS=10`. They seem to...