Fix signal handler setup for SIGHUP in the apply launcher process.
authorAmit Kapila <akapila@postgresql.org>
Fri, 17 Jul 2020 03:32:44 +0000 (09:02 +0530)
committerAmit Kapila <akapila@postgresql.org>
Fri, 17 Jul 2020 03:32:44 +0000 (09:02 +0530)
Commit 1e53fe0e70 has unified the usage of the config-file reload flag by
using the same signal handler function for the SIGHUP signal at many places
in the code.  By mistake, it used the wrong SIGNAL in apply launcher
process for the SIGHUP signal handler function.

Author: Bharath Rupireddy
Reviewed-by: Dilip Kumar
Backpatch-through: 13, where it was introduced
Discussion: https://postgr.es/m/CALj2ACVzHCRnS20bOiEHaLtP5PVBENZQn4khdsSJQgOv_GM-LA@mail.gmail.com

src/backend/replication/logical/launcher.c

index aec885e9871920f2e4d91bea35f8d495a4c79be1..ff985b9b24ca1bf12f8e4d185adb3ec8708d3ff7 100644 (file)
@@ -956,7 +956,7 @@ ApplyLauncherMain(Datum main_arg)
    LogicalRepCtx->launcher_pid = MyProcPid;
 
    /* Establish signal handlers. */
-   pqsignal(SIGTERM, SignalHandlerForConfigReload);
+   pqsignal(SIGHUP, SignalHandlerForConfigReload);
    pqsignal(SIGTERM, die);
    BackgroundWorkerUnblockSignals();