Skip to content

Commit 15de538

Browse files
committed
Added exclusion for Relay connection
1 parent 13a9378 commit 15de538

File tree

2 files changed

+8
-24
lines changed

2 files changed

+8
-24
lines changed

src/Connection/Factory.php

+8-6
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,15 @@ protected function prepareConnection(NodeConnectionInterface $connection)
175175
);
176176
}
177177

178-
$connection->addConnectCommand(
179-
new RawCommand('CLIENT', ['SETINFO', 'LIB-NAME', 'predis'])
180-
);
178+
if (!$connection instanceof RelayConnection) {
179+
$connection->addConnectCommand(
180+
new RawCommand('CLIENT', ['SETINFO', 'LIB-NAME', 'predis'])
181+
);
181182

182-
$connection->addConnectCommand(
183-
new RawCommand('CLIENT', ['SETINFO', 'LIB-VER', Client::VERSION])
184-
);
183+
$connection->addConnectCommand(
184+
new RawCommand('CLIENT', ['SETINFO', 'LIB-VER', Client::VERSION])
185+
);
186+
}
185187

186188
if (isset($parameters->database) && strlen($parameters->database)) {
187189
$connection->addConnectCommand(

src/Connection/RelayConnection.php

-18
Original file line numberDiff line numberDiff line change
@@ -257,24 +257,6 @@ public function executeCommand(CommandInterface $command)
257257
}
258258
}
259259

260-
/**
261-
* @throws ConnectionException
262-
* @throws ClientException
263-
* @throws ServerException
264-
*/
265-
public function connect()
266-
{
267-
foreach ($this->initCommands as $command) {
268-
try {
269-
$this->executeCommand($command);
270-
} catch (ServerException $ex) {
271-
if ($command->getId() !== 'CLIENT') {
272-
throw $ex;
273-
}
274-
}
275-
}
276-
}
277-
278260
/**
279261
* {@inheritdoc}
280262
*/

0 commit comments

Comments
 (0)