Paul
Paul
Hi .. it doesn't appear to fix it in the example code above. Still getting the same error.
I tried the same commands as the top of #2928 and got the error as well. I am using Python 3.11.
Hi, the platform is ubuntu 22.04. Here is the output from python3.11 -m platform: Linux-6.5.0-1018-aws-x86_64-with-glibc2.35
Found that the issue is caused by a table that had a lot of records that were storing a large amount of data as JSONB. If I deleted those manually...
Hi @Suor .. not sure why this was closed? It doesn't indicate the problem was resolved. I have started to use bulk_update and realised the updates were not invalidated in...
This looks to be caused by the httpx dependancy on trio. If I run the code: from gevent.monkey import patch_all; patch_all() import gevent import httpx def worker(n): print(n) if __name__...
Thanks tom .. The issue I am experiencing only happens when httpx is installed. If I removed httpx and left httpcore everything was fine. I did further testing yesterday and...