jackc/pgx · error
pipeline has unsynced requests
Error message
pipeline has unsynced requests
What it means
Error "pipeline has unsynced requests" thrown in jackc/pgx.
Source
Thrown at pgconn/pgconn.go:2949
}
func (p *Pipeline) handleUnexpectedMessage(errStr string, msg pgproto3.BackendMessage) error {
p.err = fmt.Errorf("pipeline: %s: received unexpected message type %T", errStr, msg)
p.conn.asyncClose()
return p.err
}
// Close closes the pipeline and returns the connection to normal mode.
func (p *Pipeline) Close() error {
if p.closed {
return p.err
}
p.closed = true
if p.state.PendingSync() {
p.conn.asyncClose()
p.err = errors.New("pipeline has unsynced requests")
p.conn.contextWatcher.Unwatch()
p.conn.unlock()
return p.err
}
for p.state.ExpectedReadyForQuery() > 0 {
results, err := p.getResults()
if err != nil {
p.err = err
var pgErr *PgError
if !errors.As(err, &pgErr) {
p.conn.asyncClose()
break
}
} else if results == nil {
// getResults returns (nil, nil) when the request queue is exhausted but
// ExpectedReadyForQuery is still > 0. This can happen when FATAL errors consumeView on GitHub (pinned to ec1a0befd2)
When it happens
Trigger: Thrown at pgconn/pgconn.go:2949 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of jackc/pgx@ec1a0befd2 (2026-08-04).
Data as JSON: /data/errors/af29f7ca98afbac9.json.
Report an issue: GitHub.