mirror of
https://github.com/predis/predis.git
synced 2026-08-30 20:21:31 +00:00
Reword some exception messages.
This commit is contained in:
@@ -53,7 +53,7 @@ class MonitorContext implements \Iterator
|
||||
private function checkCapabilities(ClientInterface $client)
|
||||
{
|
||||
if ($client->getConnection() instanceof AggregatedConnectionInterface) {
|
||||
throw new NotSupportedException('Cannot initialize a monitor context over a cluster of connections');
|
||||
throw new NotSupportedException('Cannot initialize a monitor context when using aggregated connections');
|
||||
}
|
||||
|
||||
if ($client->getProfile()->supportsCommand('monitor') === false) {
|
||||
|
||||
@@ -50,7 +50,7 @@ class PubSubContext extends AbstractPubSubContext
|
||||
private function checkCapabilities(ClientInterface $client)
|
||||
{
|
||||
if ($client->getConnection() instanceof AggregatedConnectionInterface) {
|
||||
throw new NotSupportedException('Cannot initialize a PUB/SUB context over a cluster of connections');
|
||||
throw new NotSupportedException('Cannot initialize a PUB/SUB context when using aggregated connections');
|
||||
}
|
||||
|
||||
$commands = array('publish', 'subscribe', 'unsubscribe', 'psubscribe', 'punsubscribe');
|
||||
|
||||
@@ -118,7 +118,7 @@ class MultiExecContext implements BasicClientInterface, ExecutableContextInterfa
|
||||
private function checkCapabilities(ClientInterface $client)
|
||||
{
|
||||
if ($client->getConnection() instanceof AggregatedConnectionInterface) {
|
||||
throw new NotSupportedException('Cannot initialize a MULTI/EXEC context over a cluster of connections');
|
||||
throw new NotSupportedException('Cannot initialize a MULTI/EXEC context when using aggregated connections');
|
||||
}
|
||||
|
||||
$profile = $client->getProfile();
|
||||
@@ -440,8 +440,8 @@ class MultiExecContext implements BasicClientInterface, ExecutableContextInterfa
|
||||
*/
|
||||
private function onProtocolError($message)
|
||||
{
|
||||
// Since a MULTI/EXEC block cannot be initialized over a clustered
|
||||
// connection, we can safely assume that Predis\Client::getConnection()
|
||||
// Since a MULTI/EXEC block cannot be initialized when using aggregated
|
||||
// connections, we can safely assume that Predis\Client::getConnection()
|
||||
// will always return an instance of Predis\Connection\SingleConnectionInterface.
|
||||
Helpers::onCommunicationException(new ProtocolException(
|
||||
$this->client->getConnection(), $message
|
||||
|
||||
@@ -41,7 +41,7 @@ class MonitorContextTest extends StandardTestCase
|
||||
/**
|
||||
* @group disconnected
|
||||
* @expectedException Predis\NotSupportedException
|
||||
* @expectedExceptionMessage Cannot initialize a monitor context over a cluster of connections
|
||||
* @expectedExceptionMessage Cannot initialize a monitor context when using aggregated connections
|
||||
*/
|
||||
public function testMonitorContextDoesNotWorkOnClusters()
|
||||
{
|
||||
|
||||
@@ -40,7 +40,7 @@ class PubSubContextTest extends StandardTestCase
|
||||
/**
|
||||
* @group disconnected
|
||||
* @expectedException Predis\NotSupportedException
|
||||
* @expectedExceptionMessage Cannot initialize a PUB/SUB context over a cluster of connections
|
||||
* @expectedExceptionMessage Cannot initialize a PUB/SUB context when using aggregated connections
|
||||
*/
|
||||
public function testPubSubContextDoesNotWorkOnClusters()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user