Преглед на файлове

Close the underlying connection also on MalformedServerResponse exceptions.

Daniele Alessandri преди 15 години
родител
ревизия
3a44f766c2
променени са 1 файла, в които са добавени 1 реда и са изтрити 3 реда
  1. 1 3
      lib/Predis.php

+ 1 - 3
lib/Predis.php

@@ -17,9 +17,7 @@ class CommunicationException extends PredisException {              // Communica
     public function shouldResetConnection() {  return true; }
 }
 
-class MalformedServerResponse extends CommunicationException {      // Unexpected responses
-    public function shouldResetConnection() {  return false;  }
-}
+class MalformedServerResponse extends CommunicationException { }    // Unexpected responses
 
 /* ------------------------------------------------------------------------- */