diff options
Diffstat (limited to 'src/backend/postmaster/interrupt.c')
-rw-r--r-- | src/backend/postmaster/interrupt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/postmaster/interrupt.c b/src/backend/postmaster/interrupt.c index 2ee896fc803..6d4bd76bf81 100644 --- a/src/backend/postmaster/interrupt.c +++ b/src/backend/postmaster/interrupt.c @@ -98,8 +98,9 @@ SignalHandlerForCrashExit(SIGNAL_ARGS) * shut down and exit. * * Typically, this handler would be used for SIGTERM, but some processes use - * other signals. In particular, the checkpointer exits on SIGUSR2, and the - * WAL writer exits on either SIGINT or SIGTERM. + * other signals. In particular, the checkpointer exits on SIGUSR2, and the WAL + * writer and the logical replication parallel apply worker exits on either + * SIGINT or SIGTERM. * * ShutdownRequestPending should be checked at a convenient place within the * main loop, or else the main loop should call HandleMainLoopInterrupts. |