Removed unused argument for constructor of SafeExecutor and SafeClusterExecutor

This commit is contained in:
Artur Kotyrba
2011-04-25 23:35:54 +02:00
parent 19b703588b
commit 7e4b367a1d
+2 -2
View File
@@ -185,8 +185,8 @@ class Client {
$connection = $this->_connection;
$pipeline = new PipelineContext($this,
Helpers::isCluster($connection)
? new Pipeline\SafeClusterExecutor($connection)
: new Pipeline\SafeExecutor($connection)
? new Pipeline\SafeClusterExecutor()
: new Pipeline\SafeExecutor()
);
}
else {