Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
fde62cb
)
Fix typo class variable bug in TSocketPool
author
Mark Slee
<mcslee@apache.org>
Wed, 3 Jan 2007 18:45:04 +0000
(18:45 +0000)
committer
Mark 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
patch
|
blob
|
history
diff --git
a/lib/php/src/transport/TSocketPool.php
b/lib/php/src/transport/TSocketPool.php
index
9fa967a
..
d9c78f8
100644
(file)
--- 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));
}