Remove erroneous duplication of INFO in Redis profiles.

This oversight didn't end up in a blatant bug only because the correct
handler definition for INFO replaced the old class in the profile.

Backported from 5065541 (master).
This commit is contained in:
Daniele Alessandri
2013-12-22 16:33:14 +01:00
parent 2aa771004d
commit eb6cbef4e7
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -111,7 +111,7 @@ class ServerVersion26 extends ServerProfile
'quit' => 'Predis\Command\ConnectionQuit',
/* remote server control commands */
'info' => 'Predis\Command\ServerInfo',
'info' => 'Predis\Command\ServerInfoV26x',
'slaveof' => 'Predis\Command\ServerSlaveOf',
'monitor' => 'Predis\Command\ServerMonitor',
'dbsize' => 'Predis\Command\ServerDatabaseSize',
@@ -227,7 +227,6 @@ class ServerVersion26 extends ServerProfile
'script' => 'Predis\Command\ServerScript',
/* remote server control commands */
'info' => 'Predis\Command\ServerInfoV26x',
'time' => 'Predis\Command\ServerTime',
);
}
+1 -2
View File
@@ -111,7 +111,7 @@ class ServerVersion28 extends ServerProfile
'quit' => 'Predis\Command\ConnectionQuit',
/* remote server control commands */
'info' => 'Predis\Command\ServerInfo',
'info' => 'Predis\Command\ServerInfoV26x',
'slaveof' => 'Predis\Command\ServerSlaveOf',
'monitor' => 'Predis\Command\ServerMonitor',
'dbsize' => 'Predis\Command\ServerDatabaseSize',
@@ -227,7 +227,6 @@ class ServerVersion28 extends ServerProfile
'script' => 'Predis\Command\ServerScript',
/* remote server control commands */
'info' => 'Predis\Command\ServerInfoV26x',
'time' => 'Predis\Command\ServerTime',
/* ---------------- Redis 2.8 ---------------- */