Re: [HACKERS] Streaming replication document improvements - Mailing list pgsql-docs

From Tom Lane
Subject Re: [HACKERS] Streaming replication document improvements
Date
Msg-id 7978.1271807616@sss.pgh.pa.us
Whole thread Raw
In response to Re: [HACKERS] Streaming replication document improvements  (Robert Haas <robertmhaas@gmail.com>)
Responses Re: [HACKERS] Streaming replication document improvements  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-docs
Robert Haas <robertmhaas@gmail.com> writes:
> Current logic says we hit the connection limit if:

>         if (!am_superuser &&
>                 ReservedBackends > 0 &&
>                 !HaveNFreeProcs(ReservedBackends))

> Couldn't we just change this to:

>         if ((!am_superuser || am_walsender) &&
>                 ReservedBackends > 0 &&
>                 !HaveNFreeProcs(ReservedBackends))

As of the patch I just committed, that code is not reached anymore by a
walsender process.  However, it shouldn't be hard to put a similar test
into the walsender code path.

            regards, tom lane

pgsql-docs by date:

Previous
From: Jim Nasby
Date:
Subject: Inconsistency in docs for OVERLAPS
Next
From: Fujii Masao
Date:
Subject: Re: [HACKERS] Streaming replication document improvements