Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f7c2e11

Browse files
committed
[refer #PGPRO-3213] Send SIGQUIT instead of SIGUSR2 to checkpointer during online upgrade
1 parent f80e13f commit f7c2e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ UpgradePostgres(void)
786786
IsOnlineUpgrade = true;
787787
TerminateChildren(SIGTERM);
788788
if (CheckpointerPID != 0)
789-
signal_child(CheckpointerPID, SIGUSR2);
789+
signal_child(CheckpointerPID, SIGQUIT /*SIGUSR2*/);
790790

791791
if (!SavePostmasterParameters())
792792
{

0 commit comments

Comments
 (0)