mirror of
https://github.com/postgres/postgres.git
synced 2026-06-13 10:40:09 -04:00
Make pg_standby's maxretries option do what one would expect. Fujii Masao
This commit is contained in:
parent
23e2497616
commit
9c7908b189
1 changed files with 1 additions and 1 deletions
|
|
@ -400,7 +400,7 @@ RestoreWALFileForRecovery(void)
|
|||
fflush(stderr);
|
||||
}
|
||||
|
||||
while (numretries < maxretries)
|
||||
while (numretries <= maxretries)
|
||||
{
|
||||
rc = system(restoreCommand);
|
||||
if (rc == 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue