After checking that master is alive, is_pgup() should return not keep

checking forever.
This commit is contained in:
Jaime Casanova
2011-12-01 23:58:12 -05:00
parent 3b2ccc5b78
commit 9d03d4a254
2 changed files with 4 additions and 1 deletions

View File

@@ -160,7 +160,7 @@ is_pgup(PGconn *conn, int timeout)
if (wait_connection_availability(conn, timeout) != 1)
goto failed;
continue;
break;
failed:
// we need to retry, because we might just have loose the connection once
@@ -170,6 +170,7 @@ failed:
twice = true;
}
}
return true;
}