You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was able to increase this by increasing the limit directly in pytak/client_functions.py line 220 by specifying the limit. Here I set it to 4GB, I haven't run into the limit error.
eg
@PeterQFR thanks for this. My usual preference is to set magic numbers as constants, and even then make them configurable, so in this instance lets set a const for 2**32 and come up with a config variable as such (never know when we'll want to tune, fuzz or tweak).
No problems, I think the other issue regarding the arbitary sleep probably contributed to this. I'll push some code following the generic config path and go from there.
Whilst passing images around via PyTAK, I ran into a limitexception on the rxreader generated from the protocol factory.
This generally happens if the asyncio.readuntil doesn't reach the delimiter before the limit is reached.
It doesn't seem PyTak is enabling this to be configured and its set at the asyncio defaults of 2 ** 16 or 64KB. https://github.com/python/cpython/blob/b61fece8523d0fa6d9cc6ad3fd855a136c34f0cd/Lib/asyncio/streams.py#L23
I was able to increase this by increasing the limit directly in pytak/client_functions.py line 220 by specifying the limit. Here I set it to 4GB, I haven't run into the limit error.
eg
Would it be supported to increase this limit or make it configurable?
The text was updated successfully, but these errors were encountered: