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 a new issue