commit | a09e34efb025ef9a2552deb133b5207b9dd810b4 | [log] [tgz] |
---|---|---|
author | Mark Slee <mcslee@apache.org> | Wed Jan 03 18:45:04 2007 +0000 |
committer | Mark Slee <mcslee@apache.org> | Wed Jan 03 18:45:04 2007 +0000 |
tree | 06886a1830dfb03adc814ab84defeea818842ada | |
parent | fde62cb22319c3f2d569aaa4b4b77d7727187754 [diff] [blame] |
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
diff --git a/lib/php/src/transport/TSocketPool.php b/lib/php/src/transport/TSocketPool.php index 9fa967a..d9c78f8 100644 --- a/lib/php/src/transport/TSocketPool.php +++ b/lib/php/src/transport/TSocketPool.php
@@ -181,7 +181,7 @@ // 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)); }