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

Fast fail on exceptions different than Predis\ServerException or Predis\CommunicationException.

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

+ 1 - 1
lib/Predis.php

@@ -730,12 +730,12 @@ class CommandPipeline {
             if ($block !== null) {
                 $block($this);
             }
+            $this->flushPipeline();
         }
         catch (\Exception $exception) {
             $pipelineBlockException = $exception;
         }
 
-        $this->flushPipeline();
         $this->setRunning(false);
 
         if ($pipelineBlockException !== null) {