Paul Martin
Paul Martin
Have an issue with 1.1.0, works fine with 1.0.0. ```python @pytest.fixture def fixed_timestamp(timestamp, tz_offset) -> datetime.datetime: freezer = freezegun.freeze_time(timestamp, tz_offset=tz_offset) freezer.start() yield datetime.datetime.now() freezer.stop() ``` This code hangs at ```python...
## Bug Report ### Describe the bug When large files are added to the dropzone there is a huge surge in chrome memory usage. Even when the file is removed...
Hey, In Saleor I want to send uip as an additional attribute. This is used to provide provide location data to Google Measurement Protocol. I managed to do this without...
For #1924. Exploratory PR which uses ```asyncio.create_task``` for dispatching tasks in a consumer, and ```add_done_callback``` to raise exceptions, rather than ```await``` for each task one by one. A couple of...
The goal with async programming should be to run things in parallel where possible. However the AsyncConsumer consumes messages and runs tasks sequentially. The key is this code in utils.py....
Cannot complete downloading the blockchain. The issue is with requests to the following url: https://denaro-node.gaetano.eu.org/get_blocks?offset=72307&limit=1 ```python INFO:denaro:ic| e: RemoteProtocolError('peer closed connection without sending complete message body (incomplete chunked read)') ```...
**Describe the bug** Initalizer only supports one app label in the arguments to passed to it. In trying to run it multiple times it fails at the first app giving...
I wanted to be able to do the procedure in the README in the testnet in Python 3. This required a large rewrite of the bci.py module. Here is a...
I would like to use the AuthJWTclass in Fastapi Middleware (such as in Starlette AuthenticationMiddleware in order to set request.user). However in middleware a fastapi.HTTPConnection is provided instead of a...