Преглед изворни кода

Repeat with me: do not blindly copy and paste.

Daniele Alessandri пре 14 година
родитељ
комит
f6bd5757af
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      lib/Predis.php

+ 3 - 1
lib/Predis.php

@@ -1588,7 +1588,9 @@ class TextProtocol implements IRedisProtocol {
                 return;
             }
             if ($written === false || $written === 0) {
-                $this->onCommunicationException('Error while writing bytes to the server');
+                throw new CommunicationException(
+                    $connection, 'Error while writing bytes to the server'
+                );
             }
             $value = substr($buffer, $written);
         }