Restart logical replication launcher when killed

Author: Yugo Nagata <nagata@sraoss.co.jp>
This commit is contained in:
Peter Eisentraut 2017-06-21 15:15:29 -04:00
parent e3860ffa4d
commit f669c09989

View File

@ -2854,8 +2854,9 @@ ProcessInterrupts(void)
ereport(DEBUG1,
(errmsg("logical replication launcher shutting down")));
/* The logical replication launcher can be stopped at any time. */
proc_exit(0);
/* The logical replication launcher can be stopped at any time.
* Use exit status 1 so the background worker is restarted. */
proc_exit(1);
}
else if (RecoveryConflictPending && RecoveryConflictRetryable)
{