Lists: | pgsql-committers |
---|
From: | mha(at)postgresql(dot)org (Magnus Hagander) |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Make it possible to change Kerberos/GSSAPI parameters without |
Date: | 2009-01-02 10:33:20 |
Message-ID: | 20090102103320.E87DB754A03@cvs.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-committers |
Log Message:
-----------
Make it possible to change Kerberos/GSSAPI parameters without restarting
the postmaster. They are only used in backend processes, so it's just
a matter of re-labeling the GUCs.
Modified Files:
--------------
pgsql/doc/src/sgml:
config.sgml (r1.200 -> r1.201)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml?r1=1.200&r2=1.201)
pgsql/src/backend/utils/misc:
guc.c (r1.486 -> r1.487)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/guc.c?r1=1.486&r2=1.487)
From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Magnus Hagander <magnus(at)hagander(dot)net> |
Cc: | pgsql-committers(at)postgresql(dot)org |
Subject: | Re: pgsql: Make it possible to change Kerberos/GSSAPI parameters without |
Date: | 2009-01-02 15:10:05 |
Message-ID: | 24247.1230909005@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-committers |
mha(at)postgresql(dot)org (Magnus Hagander) writes:
> Log Message:
> -----------
> Make it possible to change Kerberos/GSSAPI parameters without restarting
> the postmaster. They are only used in backend processes, so it's just
> a matter of re-labeling the GUCs.
Please use the appropriate phraseology for SIGHUP parameters, namely
This parameter can only be set in the <filename>postgresql.conf</>
file or on the server command line.
regards, tom lane
From: | Magnus Hagander <magnus(at)hagander(dot)net> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | pgsql-committers(at)postgresql(dot)org |
Subject: | Re: pgsql: Make it possible to change Kerberos/GSSAPI parameters without |
Date: | 2009-01-07 12:21:49 |
Message-ID: | 49649E5D.3040208@hagander.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-committers |
Tom Lane wrote:
> mha(at)postgresql(dot)org (Magnus Hagander) writes:
>> Log Message:
>> -----------
>> Make it possible to change Kerberos/GSSAPI parameters without restarting
>> the postmaster. They are only used in backend processes, so it's just
>> a matter of re-labeling the GUCs.
>
> Please use the appropriate phraseology for SIGHUP parameters, namely
>
> This parameter can only be set in the <filename>postgresql.conf</>
> file or on the server command line.
Done.
There may be a few more around that area that actually needs that done..
Being someone who really doesn't know the docbook stuff - is there any
way to "template" these things? So we could just use a custom tag that
would expand into the full set of SGML tags to document a single config
option?
//Magnus