Re: pg_receivewal and SIGTERM

Поиск
Список
Период
Сортировка
От Bharath Rupireddy
Тема Re: pg_receivewal and SIGTERM
Дата
Msg-id CALj2ACXXK=n_cBBU1hBCyENQvKGHEYJLbh8ASLVXd2-mQQuoeg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: pg_receivewal and SIGTERM  (Christoph Berg <myon@debian.org>)
Ответы Re: pg_receivewal and SIGTERM
Список pgsql-hackers
On Tue, Aug 16, 2022 at 5:06 PM Christoph Berg <myon@debian.org> wrote:
>
> Re: Daniel Gustafsson
> > Do you think pg_recvlogical should support SIGTERM as well?  (The signals which
> > it does trap should be added to the documentation which just now says "until
> > terminated by a signal" but that's a separate thing.)
>
> Ack, that makes sense, added in the attached updated patch.
>
> >       pqsignal(SIGINT, sigint_handler);
> > +     pqsignal(SIGTERM, sigint_handler);
> > Tiny nitpick, I think we should rename sigint_handler to just sig_handler as it
> > does handle more than sigint.
>
> I went with sigexit_handler since pg_recvlogical has also a
> sighup_handler and "sig_handler" would be confusing there.

Can we move these signal handlers to streamutil.h/.c so that both
pg_receivewal and pg_recvlogical can make use of it avoiding duplicate
code?

-- 
Bharath Rupireddy
RDS Open Source Databases: https://aws.amazon.com/rds/postgresql/



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Christoph Berg
Дата:
Сообщение: Re: pg_receivewal and SIGTERM
Следующее
От: Daniel Gustafsson
Дата:
Сообщение: Re: pg_receivewal and SIGTERM