mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Check interrupts during hot standby waits
This commit is contained in:
parent
2a2bdcab2c
commit
e8ee3d6b85
1 changed files with 2 additions and 0 deletions
|
|
@ -161,6 +161,8 @@ WaitExceedsMaxStandbyDelay(void)
|
|||
{
|
||||
TimestampTz ltime;
|
||||
|
||||
CHECK_FOR_INTERRUPTS();
|
||||
|
||||
/* Are we past the limit time? */
|
||||
ltime = GetStandbyLimitTime();
|
||||
if (ltime && GetCurrentTimestamp() >= ltime)
|
||||
|
|
|
|||
Loading…
Reference in a new issue