We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7152f3d commit 8a1f883Copy full SHA for 8a1f883
src/BaseRedis.php
@@ -145,7 +145,7 @@ public function multi($mode = \Redis::MULTI)
145
$this->pool->close(null);
146
throw $e;
147
}
148
-
+
149
$this->multiOnGoing = true;
150
151
@@ -159,13 +159,13 @@ public function exec()
159
160
161
try {
162
- $result = $this->connection->exec();
163
- } catch (\RedisException $e) {
164
- $this->multiOnGoing = false;
165
- $this->pool->close(null);
166
- throw $e;
167
- }
168
+ $result = $this->connection->exec();
+ } catch (\RedisException $e) {
+ $this->multiOnGoing = false;
+ $this->pool->close(null);
+ throw $e;
+ }
169
$this->multiOnGoing = false;
170
171
$this->pool->close($this->connection);
0 commit comments