mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-20 11:29:13 -05:00
590bc69cbc
The old timeout mechanism started counting when the client began trying to connect to the server. This meant that sending a large batch of chunks could cause the request to fail before all the data even made it to the server. What we actually want is to timeout when the connection has been idle for some amount of time. This means that long server processing times can still cause clients to time out, but that's probably as it should be. Towards #1414