Fix typo class variable bug in TSocketPool
authorMark Slee <mcslee@apache.org>
Wed, 3 Jan 2007 18:45:04 +0000 (18:45 +0000)
committerMark Slee <mcslee@apache.org>
Wed, 3 Jan 2007 18:45:04 +0000 (18:45 +0000)
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

index 9fa967a..d9c78f8 100644 (file)
@@ -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));
       }