Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This improves the error output when an
ErrorResponse
is received uponSync
after the client connection is idle over_ping_wait_time
. The error was:But this cannot explain or fix the server issue why anErrorResponse
is returned uponSync
.The server will send an
IdleSessionTimeoutError
when killing idle connections:https://github.com/edgedb/edgedb/blob/2b426dccf6f2c4af60915a8ee47a41eff1f6a00c/edb/server/protocol/binary.pyx#L371-L378
Depending on the idle time (comparing to socket write timeout), the blocking client may still receive this error on
ping
. In this case, we should just reconnect and recover.Refs #365