Helge
Helge
I am trying to understand what happens. The difference in the debug output is the following if everything is doing well ``` Wait for response... Get command, t15, s0 Read...
I am unsure why this helps, but by changing the timeout in `ant.fs.manage.py` in the `_get_command` function from 15 seconds to 5 seconds, I am able to transfer files. It...
I think the interesting change in behavior is shown in the following snippet. ``` Read data: [a4 09 50 60 14 d4 1c 90 48 06 48 ba 6d] (now...
Any chance of getting this merged?
Thanks for getting me and sorry for taking a few days to reply. I'm trying to run gotosocial in a docker container, so that I can run automated tests against...
No, there is no standard for how to do it. At least for how the keyId relates to the actor object. Something like fetch_public_key in https://bovine.readthedocs.io/en/latest/tutorial_server.html#verifying-signatures-and-accepting-a-follow-request seems to be a...
I've now added test cases for http signatures to bovine: https://codeberg.org/helge/bovine/src/branch/dev/bovine/bovine/crypto/test_crypto.py I hope these help if someone wants to implement http signatures themselves.
The behavior of this test case has changed. I can no longer add new subscribers after TestRabbitBroker has been called, instead I need to add them before creating the TestRabbitBroker....
I was also looking for this. The code for array field is at: https://github.com/tortoise/tortoise-orm/blob/main/tortoise/contrib/postgres/fields.py The documentation should probably be at: https://tortoise.github.io/contrib/postgres.html If there is no objection to it, I can...
Working my way through 0.6, I noticed that the TestRabbitProvider now checks if a subscriber exists for things that are published. If not a `faststream.exceptions.SubscriberNotFound` is raised. It would be...