Write non-defaults file before signalling the children to reread it.

This commit is contained in:
Bruce Momjian 2003-05-08 20:43:07 +00:00
parent 789a5b340c
commit f2c7a27635
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.324 2003/05/08 18:33:25 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.325 2003/05/08 20:43:07 momjian Exp $
* *
* NOTES * NOTES
* *
@ -1572,11 +1572,11 @@ SIGHUP_handler(SIGNAL_ARGS)
if (Shutdown <= SmartShutdown) if (Shutdown <= SmartShutdown)
{ {
elog(LOG, "Received SIGHUP, reloading configuration files"); elog(LOG, "Received SIGHUP, reloading configuration files");
SignalChildren(SIGHUP);
ProcessConfigFile(PGC_SIGHUP); ProcessConfigFile(PGC_SIGHUP);
#ifdef EXEC_BACKEND #ifdef EXEC_BACKEND
write_nondefault_variables(PGC_SIGHUP); write_nondefault_variables(PGC_SIGHUP);
#endif #endif
SignalChildren(SIGHUP);
load_hba(); load_hba();
load_ident(); load_ident();
} }