mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
Simplify error checking and check the correct error
This commit is contained in:
parent
a2706e6498
commit
f6035822e7
@ -101,7 +101,7 @@ func (p *PDUStreamProvider) CompleteSync(
|
||||
)
|
||||
if jerr != nil {
|
||||
req.Log.WithError(jerr).Error("p.getJoinResponseForCompleteSync failed")
|
||||
if err == context.DeadlineExceeded || err == context.Canceled || err == sql.ErrTxDone {
|
||||
if ctxErr := req.Context.Err(); ctxErr != nil || jerr == sql.ErrTxDone {
|
||||
return from
|
||||
}
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user