Skip to content
Snippets Groups Projects
Commit 7aeff9f4 authored by Magnus Hagander's avatar Magnus Hagander
Browse files

Ensure walsenders can be SIGTERMed while in non-walsender code

In oder to exit on SIGTERM when in non-walsender code,
such as do_pg_stop_backup(), we need to set the interrupt
variables that are used there, and not just the walsender
local ones.
parent 1cb018dd
No related branches found
No related tags found
No related merge requests found
...@@ -1302,6 +1302,13 @@ WalSndShutdownHandler(SIGNAL_ARGS) ...@@ -1302,6 +1302,13 @@ WalSndShutdownHandler(SIGNAL_ARGS)
if (MyWalSnd) if (MyWalSnd)
SetLatch(&MyWalSnd->latch); SetLatch(&MyWalSnd->latch);
/*
* Set the standard (non-walsender) state as well, so that we can
* abort things like do_pg_stop_backup().
*/
InterruptPending = true;
ProcDiePending = true;
errno = save_errno; errno = save_errno;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment