Skip to content

Commit f2c7a27

Browse files
committed
Write non-defaults file before signalling the children to reread it.
1 parent 789a5b3 commit f2c7a27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
*
3939
* IDENTIFICATION
40-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.324 2003/05/08 18:33:25 tgl Exp $
40+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.325 2003/05/08 20:43:07 momjian Exp $
4141
*
4242
* NOTES
4343
*
@@ -1572,11 +1572,11 @@ SIGHUP_handler(SIGNAL_ARGS)
15721572
if (Shutdown <= SmartShutdown)
15731573
{
15741574
elog(LOG, "Received SIGHUP, reloading configuration files");
1575-
SignalChildren(SIGHUP);
15761575
ProcessConfigFile(PGC_SIGHUP);
15771576
#ifdef EXEC_BACKEND
15781577
write_nondefault_variables(PGC_SIGHUP);
15791578
#endif
1579+
SignalChildren(SIGHUP);
15801580
load_hba();
15811581
load_ident();
15821582
}

0 commit comments

Comments
 (0)