From a09e34efb025ef9a2552deb133b5207b9dd810b4 Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Wed, 3 Jan 2007 18:45:04 +0000 Subject: [PATCH] Fix typo class variable bug in TSocketPool Reviewed By: corson git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664902 13f79535-47bb-0310-9956-ffa450edef68 --- lib/php/src/transport/TSocketPool.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/php/src/transport/TSocketPool.php b/lib/php/src/transport/TSocketPool.php index 9fa967a2..d9c78f89 100644 --- a/lib/php/src/transport/TSocketPool.php +++ b/lib/php/src/transport/TSocketPool.php @@ -181,7 +181,7 @@ class TSocketPool extends TSocket { // Only connect if not in the middle of a fail interval, OR if this // is the LAST server we are trying, just hammer away on it $isLastServer = FALSE; - if ($alwaysTryLast) { + if ($this->alwaysTryLast_) { $isLastServer = ($i == ($numServers - 1)); } -- 2.17.1