We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SocketFactory::bindAfterRefreshed
1 parent 7fcdccb commit 65e6d6aCopy full SHA for 65e6d6a
src/SocketFactory.php
@@ -83,12 +83,12 @@ protected function bindAfterRefreshed(LoadBalancerInterface $loadBalancer): void
83
$items = [];
84
/** @var Node $node */
85
foreach ($beforeNodes as $node) {
86
- $key = $node->host . $node->host . $node->weight . $node->pathPrefix;
+ $key = $node->host . $node->port . $node->weight . $node->pathPrefix;
87
$items[$key] = true;
88
}
89
90
foreach ($nodes as $node) {
91
92
if (array_key_exists($key, $items)) {
93
unset($items[$key]);
94
0 commit comments