From 6eef1d5d5bbbeffe0b3c99097277e355cf5c40cc Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Sun, 3 Dec 2023 18:36:03 +1000 Subject: [PATCH] Trivial typo fix --- backends/postgres/postgres_backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/postgres/postgres_backend.go b/backends/postgres/postgres_backend.go index 6b4edc6..e7cc225 100644 --- a/backends/postgres/postgres_backend.go +++ b/backends/postgres/postgres_backend.go @@ -896,7 +896,7 @@ func (p *PgBackend) getPendingJobID(ctx context.Context, conn *pgxpool.Conn, que // acquire acquires connections from the connection pool with a timeout // -// the purpose of this function is to skirt pgxpool's default blocking behavior with connection acquisition preemtion +// the purpose of this function is to skirt pgxpool's default blocking behavior with connection acquisition preemption func (p *PgBackend) acquire(ctx context.Context) (conn *pgxpool.Conn, err error) { ctx, cancelFunc := context.WithDeadline(ctx, time.Now().Add(p.config.PGConnectionTimeout)) defer cancelFunc()