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
When I executed the following code async with ClientSession() as s: client = ChClient(s,url='http://192.168.1.90:8123/',user='algorithmrw',password='dd',database='dd') alive = await client.is_alive() all_rows = await client.fetch("SELECT * FROM phalgorithm.DataAnalyse")
I ran into this problem “aiohttp.client_exceptions.ServerDisconnectedError”.
But,when I execute the insert statement, there is no problem
The text was updated successfully, but these errors were encountered:
For anyone who also encountered the same error, it could due to the CPU blocked code before the query execution under the session which should be moved out of the session. I know it is not the reason for this issue, but the error raised is the same.
When I executed the following code
async with ClientSession() as s: client = ChClient(s,url='http://192.168.1.90:8123/',user='algorithmrw',password='dd',database='dd') alive = await client.is_alive() all_rows = await client.fetch("SELECT * FROM phalgorithm.DataAnalyse")
I ran into this problem “aiohttp.client_exceptions.ServerDisconnectedError”.
But,when I execute the insert statement, there is no problem
The text was updated successfully, but these errors were encountered: